12 lines
232 B
Docker
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"] |