mirror of
https://github.com/AllSpiceIO/post-dr-comment.git
synced 2025-04-07 05:45:09 +00:00
9 lines
187 B
Docker
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" ]
|