2025-07-17 13:46:36 -04:00

12 lines
232 B
Docker

FROM allspice/kicad:9.0-releases
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY allspice_upload.py .
COPY entrypoint.sh .
RUN chmod +x entrypoint.sh
ENTRYPOINT ["/app/entrypoint.sh"]