From 19cf51bece5a31a91673433d61420fe3328673a4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 6 Oct 2024 09:27:14 +0000 Subject: [PATCH] build(deps): Bump python in the container-dependencies group Bumps the container-dependencies group with 1 update: python. Updates `python` from `59c7332` to `ad48727` --- 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 aff2b23f..081915a0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12-slim@sha256:59c7332a4a24373861c4a5f0eec2c92b87e3efeb8ddef011744ef9a751b1d11c as builder +FROM python:3.12-slim@sha256:af4e85f1cac90dd3771e47292ea7c8a9830abfabbe4faa5c53f158854c2e819d 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:59c7332a4a24373861c4a5f0eec2c92b87e3efeb8ddef011744ef9a751b1d11c as prod +FROM python:3.12-slim@sha256:af4e85f1cac90dd3771e47292ea7c8a9830abfabbe4faa5c53f158854c2e819d as prod # Define Git SHA build argument for sentry ARG git_sha="development"