mirror of
https://github.com/AllSpiceIO/digikey-search-html-report.git
synced 2024-11-23 04:25:01 +00:00
10 lines
210 B
Docker
10 lines
210 B
Docker
FROM python:3.12-bookworm
|
|
|
|
COPY entrypoint.py /entrypoint.py
|
|
COPY report_template /report_template
|
|
COPY requirements.txt /requirements.txt
|
|
|
|
RUN pip install -r /requirements.txt
|
|
|
|
ENTRYPOINT [ "/entrypoint.py" ]
|