6
mirror of https://github.com/AllSpiceIO/post-dr-comment.git synced 2025-04-07 05:45:09 +00:00
post-dr-comment/Dockerfile
Shrikanth Upadhayaya 656b43d1d7
Initialize
2024-09-05 12:49:01 -07:00

9 lines
187 B
Docker

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