6
mirror of https://github.com/AllSpiceIO/post-dr-comment.git synced 2025-04-17 23:28:55 +00:00
post-dr-comment/Dockerfile

9 lines
187 B
Docker
Raw Permalink Normal View History

2024-09-05 19:49:01 +00:00
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" ]