From c4400d789d4b15209ff706dc7e4ceb02e08efe0d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Nov 2024 04:12:12 +0000 Subject: [PATCH] build(deps): Bump python in the container-dependencies group Bumps the container-dependencies group with 1 update: python. Updates `python` from 3.12-slim to 3.13-slim --- updated-dependencies: - dependency-name: python dependency-type: direct:production dependency-group: container-dependencies ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 081915a..dc582a6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12-slim@sha256:af4e85f1cac90dd3771e47292ea7c8a9830abfabbe4faa5c53f158854c2e819d as builder +FROM python:3.13-slim@sha256:751d8bece269ba9e672b3f2226050e7e6fb3f3da3408b5dcb5d415a054fcb061 as builder RUN pip install -U pip setuptools wheel RUN pip install pdm @@ -22,7 +22,7 @@ ENV GIT_SHA="testing" CMD ["pdm", "run", "coverage"] -FROM python:3.12-slim@sha256:af4e85f1cac90dd3771e47292ea7c8a9830abfabbe4faa5c53f158854c2e819d as prod +FROM python:3.13-slim@sha256:751d8bece269ba9e672b3f2226050e7e6fb3f3da3408b5dcb5d415a054fcb061 as prod # Define Git SHA build argument for sentry ARG git_sha="development"