You've already forked kicad-generate-outputs-addon
12 lines
267 B
Docker
12 lines
267 B
Docker
FROM ghcr.io/inti-cmnb/kicad10_auto:dev_1.9.1-fa9f2e7_k10.0.4_d_sid
|
|
|
|
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"] |