6
mirror of https://github.com/AllSpiceIO/post-dr-comment.git synced 2025-04-01 04:46:53 +00:00
post-dr-comment/Dockerfile

9 lines
187 B
Docker
Raw Normal View History

FROM python:3.11-bookworm
2024-09-05 19:49:01 +00:00
COPY requirements.txt /requirements.txt
COPY post_dr_comment.py /post_dr_comment.py
RUN pip install -r /requirements.txt
ENTRYPOINT [ "/post_dr_comment.py" ]