From 92ec6f24bc6b55b43e6ffa7ccefd1b7f6d6bace6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Nov 2024 19:45:23 +0000 Subject: [PATCH] Bump python from 3.12.5-alpine3.19 to 3.13.0-alpine3.19 Bumps python from 3.12.5-alpine3.19 to 3.13.0-alpine3.19. --- updated-dependencies: - dependency-name: python dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8260f5f..2d608ac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12.5-alpine3.19 as BUILD +FROM python:3.13.0-alpine3.19 as BUILD RUN apk add --update \ && apk add --no-cache --virtual build-base libressl-dev libffi-dev gcc musl-dev python3-dev \ @@ -9,7 +9,7 @@ COPY requirements.txt /root/requirements.txt RUN pip install --upgrade pip && \ pip install -r /root/requirements.txt -FROM python:3.12.5-alpine3.19 +FROM python:3.13.0-alpine3.19 RUN apk add --no-cache --update bash