post-dr-comment/Dockerfile
Shrikanth Upadhayaya 741b40d81e
Downgrade to python 3.11
We're seeing this error:
https://github.com/python/cpython/issues/120788

In some runs, so this commit downgrades Python to 3.11, as all reports of that bug seem to be from 3.12.
2024-09-06 09:02:28 -07:00

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" ]