From ae68062c9a66a4aa7f6d472ea02d16ed2306b77e Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Wed, 13 Nov 2024 10:21:50 +0000 Subject: [PATCH] Update python Docker tag to v3.13 Signed-off-by: Mend Renovate --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c028950..9bb370c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # This Dockerfile is based on the pattern recommended by the pipenv docs: # https://pipenv.pypa.io/en/latest/docker.html -FROM python:3.12@sha256:d2baf6cdd7adfa1a5a12effd42b7a2e18443e47ba780942f41d620c189e659b7 as builder +FROM python:3.13@sha256:7cbaafdb2751702bbca474e69bd518c5504c4f34d6cd1c9e6f2e8d3072a582df as builder RUN pip install --no-cache-dir pipenv==2023.12.1 ENV PIPENV_VENV_IN_PROJECT=1 @@ -11,7 +11,7 @@ RUN pipenv --no-site-packages install -v --deploy ############################################################ -FROM python:3.12-slim@sha256:d789b458e70bda0a34f31b1535283086662ac6042efb0178df7e868cd10b4a6b as final +FROM python:3.13-slim@sha256:4efa69bf17cfbd83a9942e60e2642335c3b397448e00410063a0421f9727c4c4 as final RUN adduser --uid 19876 summarizer-bot && \ mkdir /app && \