From 079799573d44b8218fbd156a7bedec8cc9af0496 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 8 Oct 2024 04:13:23 +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 12679e3..cedae28 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12-alpine as build +FROM python:3.13-alpine as build RUN set -eux; \ pip --no-cache-dir install --no-compile build @@ -8,7 +8,7 @@ COPY . . RUN set -eux; \ python3 -m build -FROM python:3.12-alpine as base +FROM python:3.13-alpine as base ENV PYTHONDONTWRITEBYTECODE=1 ENV PYTHONUNBUFFERED=1