From 8a516c14c5aa4077e48e85af6a27675336def5c1 Mon Sep 17 00:00:00 2001 From: Jonas L Date: Wed, 7 Dec 2022 10:39:18 +0100 Subject: [PATCH] chore(deps): revert update python docker tag to v3.11 (#2245) (#2269) This reverts commit d2d4ebdf8263d495232a0597a7c896bbaf0dbd9e. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3ecde4d7f..79dbf7aa5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ ARG LIBRETIME_VERSION #======================================================================================# # Python Builder # #======================================================================================# -FROM python:3.11-slim-bullseye as python-builder +FROM python:3.10-slim-bullseye as python-builder WORKDIR /build @@ -18,7 +18,7 @@ RUN pip wheel --wheel-dir . --no-deps . #======================================================================================# # Python base # #======================================================================================# -FROM python:3.11-slim-bullseye as python-base +FROM python:3.10-slim-bullseye as python-base ENV PYTHONDONTWRITEBYTECODE=1 ENV PYTHONUNBUFFERED=1