Skip to content

Commit

Permalink
Bump python from 3.8-slim-buster to 3.11-slim-buster
Browse files Browse the repository at this point in the history
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] <support@github.com>
  • Loading branch information
dependabot[bot] authored Jan 8, 2023
1 parent 9d70371 commit c795108
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
######################################################################################

Expand Down

0 comments on commit c795108

Please sign in to comment.