From e192a5b73b0a7cec14e33463c2faf9ba8331646c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 14 Aug 2024 03:18:40 +0000 Subject: [PATCH] chore(deps): update python docker tag to v3.12.5 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d08f5b5c..81098d69 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12.4-alpine as builder +FROM python:3.12.5-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.12.5-alpine as runtime ARG UID=10001 RUN adduser \