From a4b3a45253024c6af8b8d919e5f2874cd61146c9 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 03:38:32 +0000 Subject: [PATCH] chore(deps): update python docker tag to v3.13.1 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d08f5b5c..b48d3733 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12.4-alpine as builder +FROM python:3.13.1-alpine as builder ENV PYTHONDONTWRITEBYTECODE=1 ENV PYTHONUNBUFFERED=1 @@ -21,7 +21,7 @@ COPY requirements.txt . RUN --mount=type=cache,target=/root/.cache/pip \ python -m pip install -r requirements.txt --prefix=/install -FROM python:3.12.4-alpine as runtime +FROM python:3.13.1-alpine as runtime ARG UID=10001 RUN adduser \