From 2cd07e01519332dfdb31bafda291618cb0fc9d05 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 15 Sep 2022 08:07:58 +0000 Subject: [PATCH] chore(deps): update python docker tag to v3.10 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 25cd0eed6..8a7dded58 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ #======================================================================================# # Python Builder # #======================================================================================# -FROM python:3.9-slim-bullseye as python-builder +FROM python:3.10-slim-bullseye as python-builder WORKDIR /build @@ -17,7 +17,7 @@ RUN pip wheel --wheel-dir . --no-deps . #======================================================================================# # Python base # #======================================================================================# -FROM python:3.9-slim-bullseye as python-base +FROM python:3.10-slim-bullseye as python-base ENV PYTHONDONTWRITEBYTECODE=1 ENV PYTHONUNBUFFERED=1