From 511c7c158009b5d402e94425f6a62f689cffb31f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Oct 2023 01:34:23 +0000 Subject: [PATCH] Bump python from 3.11-slim-bullseye to 3.12-slim-bullseye Bumps python from 3.11-slim-bullseye to 3.12-slim-bullseye. --- updated-dependencies: - dependency-name: python dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile-base | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile-base b/Dockerfile-base index 8d10aec1..64dd0ede 100644 --- a/Dockerfile-base +++ b/Dockerfile-base @@ -1,4 +1,4 @@ -FROM --platform=linux/amd64 python:3.11-slim-bullseye as compile-amd64 +FROM --platform=linux/amd64 python:3.12-slim-bullseye as compile-amd64 ARG TARGETOS ARG TARGETARCH ARG TARGETVARIANT @@ -16,7 +16,7 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get update -y && apt-get -yq upgrade && \ ###################################################################################### -FROM --platform=linux/arm64 python:3.11-slim-bullseye as compile-arm64 +FROM --platform=linux/arm64 python:3.12-slim-bullseye as compile-arm64 ARG TARGETOS ARG TARGETARCH ARG TARGETVARIANT @@ -71,7 +71,7 @@ RUN set -x && \ ###################################################################################### -FROM --platform=linux/arm/v7 python:3.11-slim-bullseye as compile-armv7 +FROM --platform=linux/arm/v7 python:3.12-slim-bullseye as compile-armv7 ARG TARGETOS ARG TARGETARCH ARG TARGETVARIANT @@ -126,13 +126,13 @@ RUN set -x && \ ###################################################################################### -FROM --platform=linux/amd64 python:3.11-slim-bullseye as build-amd64 +FROM --platform=linux/amd64 python:3.12-slim-bullseye as build-amd64 COPY --from=compile-amd64 /opt/venv /opt/venv -FROM --platform=linux/arm64 python:3.11-slim-bullseye as build-arm64 +FROM --platform=linux/arm64 python:3.12-slim-bullseye as build-arm64 COPY --from=compile-arm64 /opt/venv /opt/venv -FROM --platform=linux/arm/v7 python:3.11-slim-bullseye as build-armv7 +FROM --platform=linux/arm/v7 python:3.12-slim-bullseye as build-armv7 COPY --from=compile-armv7 /opt/venv /opt/venv ######################################################################################