From f8f25286f006023d485539010bcb4113ad85c253 Mon Sep 17 00:00:00 2001 From: Vadim Laletin Date: Fri, 5 Jul 2024 19:10:33 +0200 Subject: [PATCH] Update Dockerfile base image Fix https://stackoverflow.com/questions/70087344/python-in-docker-runtimeerror-cant-start-new-thread --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 528e8d8..2ab344f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.11 +FROM python:3.11-bullseye RUN pip install pipenv RUN mkdir /app WORKDIR /app