From bf7ecd23a6f45b712eed10afe42d9f310b93a73c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 14 Jul 2024 19:46:57 +0000 Subject: [PATCH] build(deps): Bump python in the container-dependencies group (#262) Bumps the container-dependencies group with 1 update: python. Updates `python` from `afc139a` to `da2d7af` --- updated-dependencies: - dependency-name: python dependency-type: direct:production dependency-group: container-dependencies ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 67fc96e..7128714 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12-slim@sha256:5dc6f84b5e97bfb0c90abfb7c55f3cacc2cb6687c8f920b64a833a2219875997 as builder +FROM python:3.12-slim@sha256:f11725aba18c19664a408902103365eaf8013823ffc56270f921d1dc78a198cb as builder RUN pip install -U pip setuptools wheel RUN pip install pdm @@ -19,7 +19,7 @@ ENV GIT_SHA="testing" CMD ["pdm", "run", "coverage"] -FROM python:3.12-slim@sha256:5dc6f84b5e97bfb0c90abfb7c55f3cacc2cb6687c8f920b64a833a2219875997 as prod +FROM python:3.12-slim@sha256:f11725aba18c19664a408902103365eaf8013823ffc56270f921d1dc78a198cb as prod # Define Git SHA build argument for sentry ARG git_sha="development"