From 767c370642b7f71d7ddd573a30fb5face50fbc74 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 8 Oct 2024 00:43:11 +0000 Subject: [PATCH] chore(deps): update python docker tag to v3.13 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2391bbe98..4c31ead6a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ ARG LIBRETIME_VERSION #======================================================================================# # Python Builder # #======================================================================================# -FROM python:3.10-slim-bullseye AS python-builder +FROM python:3.13-slim-bullseye AS python-builder WORKDIR /build @@ -18,7 +18,7 @@ RUN pip wheel --wheel-dir . --no-deps . #======================================================================================# # Python base # #======================================================================================# -FROM python:3.10-slim-bullseye AS python-base +FROM python:3.13-slim-bullseye AS python-base ENV PYTHONDONTWRITEBYTECODE=1 ENV PYTHONUNBUFFERED=1