From 741b40d81eee883d06daf7685733a50c2fca17bf Mon Sep 17 00:00:00 2001 From: Shrikanth Upadhayaya <shrik450@gmail.com> Date: Fri, 6 Sep 2024 09:02:28 -0700 Subject: [PATCH] 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. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0048727..f3d9bcf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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