6
mirror of https://github.com/AllSpiceIO/post-dr-comment.git synced 2025-04-01 12:46:55 +00:00

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.
This commit is contained in:
Shrikanth Upadhayaya 2024-09-06 09:02:28 -07:00 committed by GitHub
parent 6546147359
commit 741b40d81e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,4 +1,4 @@
FROM python:3.12-bookworm
FROM python:3.11-bookworm
COPY requirements.txt /requirements.txt
COPY post_dr_comment.py /post_dr_comment.py