From fa54bba15852774a0e288666faae1807192b37ed Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Sep 2024 09:17:19 +0000 Subject: [PATCH] Bump python in /compose/production/django Bumps python from 3.11.9-slim-bullseye to 3.11.10-slim-bullseye. --- updated-dependencies: - dependency-name: python dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- compose/production/django/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose/production/django/Dockerfile b/compose/production/django/Dockerfile index d9a7c64..1598eb1 100644 --- a/compose/production/django/Dockerfile +++ b/compose/production/django/Dockerfile @@ -8,7 +8,7 @@ RUN npm install && npm cache clean --force COPY . ${APP_HOME} RUN npm run build # define an alias for the specific python version used in this file. -FROM python:3.11.9-slim-bullseye AS python +FROM python:3.11.10-slim-bullseye AS python # Python build stage FROM python AS python-build-stage