From 17921c1097422f60ce43a4495449b6df48455300 Mon Sep 17 00:00:00 2001 From: Thomas Sileo Date: Sat, 24 Dec 2022 09:50:51 +0100 Subject: [PATCH] Default to Python 3.11 in the Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8d46882..c95ad6f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10-slim as python-base +FROM python:3.11-slim as python-base ENV PYTHONUNBUFFERED=1 \ PYTHONDONTWRITEBYTECODE=1 \ POETRY_HOME="/opt/poetry" \