From aa87bee014aff1f3ff3f56abe4fd9db83827f913 Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Sat, 2 Sep 2023 21:33:16 +0100 Subject: [PATCH] Pin Python to 3.10.11 Python 3.10.12 and above causes threading issues (ex: "getaddrinfo() thread failed to start") --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 512fc491..28220622 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10 +FROM python:3.10.11 RUN groupadd -g 5123 cdb && \ useradd -r -u 5123 -g cdb cdb