From 88641c17b57e6e5e48473056ef1863bd1ac57447 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Nov 2024 22:47:30 +0000 Subject: [PATCH] Bump python from 3.12-alpine to 3.13-alpine Bumps python from 3.12-alpine to 3.13-alpine. --- updated-dependencies: - dependency-name: python dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index aed3c483..b37ed9f0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # ================= BUILD BACKEND ================== -FROM python:3.12-alpine AS backend-builder +FROM python:3.13-alpine AS backend-builder # Install the build system RUN apk add --update git @@ -26,7 +26,7 @@ RUN npm install RUN npm run build # =============== PRODUCTION =============== -FROM python:3.12-alpine +FROM python:3.13-alpine # Install the application RUN apk add --update git gcc musl-dev bash