From 608e79a9fc7a6bd62b05d24a8955267c684ec065 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 8 Jan 2023 19:31:59 +0000 Subject: [PATCH] Bump python from 3.8-slim-buster to 3.11-slim-buster Bumps python from 3.8-slim-buster to 3.11-slim-buster. --- updated-dependencies: - dependency-name: python dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index b2adc06..c9be1dc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM --platform=linux/amd64 python:3.8-slim-buster as compile-amd64 +FROM --platform=linux/amd64 python:3.11-slim-buster 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.8-slim-buster as compile-arm64 +FROM --platform=linux/arm64 python:3.11-slim-buster as compile-arm64 ARG TARGETOS ARG TARGETARCH ARG TARGETVARIANT @@ -73,7 +73,7 @@ RUN set -x && \ ###################################################################################### -FROM --platform=linux/arm/v7 python:3.8-slim-buster as compile-armv7 +FROM --platform=linux/arm/v7 python:3.11-slim-buster as compile-armv7 ARG TARGETOS ARG TARGETARCH ARG TARGETVARIANT @@ -130,13 +130,13 @@ RUN set -x && \ ###################################################################################### -FROM --platform=linux/amd64 python:3.8-slim-buster as build-amd64 +FROM --platform=linux/amd64 python:3.11-slim-buster as build-amd64 COPY --from=compile-amd64 /opt/venv /opt/venv -FROM --platform=linux/arm64 python:3.8-slim-buster as build-arm64 +FROM --platform=linux/arm64 python:3.11-slim-buster as build-arm64 COPY --from=compile-arm64 /opt/venv /opt/venv -FROM --platform=linux/arm/v7 python:3.8-slim-buster as build-armv7 +FROM --platform=linux/arm/v7 python:3.11-slim-buster as build-armv7 COPY --from=compile-armv7 /opt/venv /opt/venv ######################################################################################