From 2cc03c3403a79944d061577132a177a671def6b0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 8 Oct 2024 04:18:13 +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 4d8884a..a8a7596 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12-alpine as builder +FROM python:3.13-alpine as builder RUN python3 -m pip install --upgrade build @@ -6,7 +6,7 @@ COPY . . RUN python3 -m build -FROM python:3.12-alpine +FROM python:3.13-alpine ENV PYTHONDONTWRITEBYTECODE=1 ENV PYTHONUNBUFFERED=1