From 58bcb886795dbf77462b5a080e2cb6d9f4adf0a8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Oct 2024 08:10:01 +0000 Subject: [PATCH] build(deps): bump python from 3.12.6-slim to 3.12.7-slim Bumps python from 3.12.6-slim to 3.12.7-slim. --- updated-dependencies: - dependency-name: python dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 50b5f7e..28b6703 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # # Builder image # -FROM python:3.12.6-slim as builder +FROM python:3.12.7-slim as builder RUN apt-get update && \ apt-get install -y --no-install-recommends gcc python3-dev @@ -28,7 +28,7 @@ RUN pip install --upgrade pip && \ # # Production size image # -FROM python:3.12.6-slim as production +FROM python:3.12.7-slim as production # Directories paths as environment variables ENV APP_HOME=/app