2024-04-11 17:45:02 +00:00
|
|
|
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" ]
|