0
mirror of https://github.com/AllSpiceIO/generate-orcad-schematic-pdf.git synced 2025-07-15 06:09:14 +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" ]