mirror of
https://github.com/AllSpiceIO/post-dr-comment.git
synced 2024-11-23 07:04:39 +00:00
741b40d81e
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.
9 lines
187 B
Docker
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" ]
|