post-dr-comment/Dockerfile

9 lines
187 B
Docker

FROM python:3.11-bookworm
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" ]