Add-on-template/Dockerfile

9 lines
172 B
Docker
Raw Permalink Normal View History

FROM python:3.12-bookworm
2024-04-05 18:54:16 +00:00
2024-05-16 22:10:24 +00:00
COPY requirements.txt /requirements.txt
2024-10-15 06:24:03 +00:00
COPY entrypoint.py /entrypoint.py
2024-04-05 18:54:16 +00:00
2024-05-16 22:10:24 +00:00
RUN pip install -r /requirements.txt
2024-04-05 18:54:16 +00:00
2024-10-15 06:24:03 +00:00
ENTRYPOINT [ "/entrypoint.py" ]