From 2a1d202ef1692d62bdcfa39b2b402839bd2a2748 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Wed, 25 Dec 2024 08:27:05 +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 d915207..fc1329c 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:5cc2794c59e70362a76b1bf97d468c7622afd1ae00eeed7cf6f4e6480b11178c as builder +FROM python:3.13@sha256:c286f03b5b7ffbefa9c45b87c4d27f952b3706b180dc591cd983800d2e6a1fcb 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:74d1a6838efbb088791d20f0c9dc4e4819e499c01ceecebcdaaccc249496268a as final +FROM python:3.13-slim@sha256:ad05c52e178ac777dd1d6d7df5ddf5f16364cfb1cd5f9f016193eafd92ab4854 as final RUN adduser --uid 19876 summarizer-bot && \ mkdir /app && \