0
mirror of https://github.com/AllSpiceIO/generate-orcad-schematic-pdf.git synced 2026-03-20 01:45:22 +00:00

9 lines
172 B
Docker

FROM python:3.12-bookworm
COPY entrypoint.py /entrypoint.py
COPY requirements.txt /requirements.txt
RUN pip install -r /requirements.txt
ENTRYPOINT [ "/entrypoint.py" ]