Skip to content

Commit

Permalink
Bump python from 3.12-slim-bullseye to 3.13-slim-bullseye
Browse files Browse the repository at this point in the history
Bumps python from 3.12-slim-bullseye to 3.13-slim-bullseye.

---
updated-dependencies:
- dependency-name: python
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and axu2 committed Dec 13, 2024
1 parent e0b1848 commit 73a91ec
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Dockerfile-base
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=linux/amd64 python:3.12-slim-bullseye as compile-amd64
FROM --platform=linux/amd64 python:3.13-slim-bullseye 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.12-slim-bullseye as compile-arm64
FROM --platform=linux/arm64 python:3.13-slim-bullseye 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.12-slim-bullseye as compile-armv7
FROM --platform=linux/arm/v7 python:3.13-slim-bullseye 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.12-slim-bullseye as build-amd64
FROM --platform=linux/amd64 python:3.13-slim-bullseye as build-amd64
COPY --from=compile-amd64 /opt/venv /opt/venv

FROM --platform=linux/arm64 python:3.12-slim-bullseye as build-arm64
FROM --platform=linux/arm64 python:3.13-slim-bullseye as build-arm64
COPY --from=compile-arm64 /opt/venv /opt/venv

FROM --platform=linux/arm/v7 python:3.12-slim-bullseye as build-armv7
FROM --platform=linux/arm/v7 python:3.13-slim-bullseye as build-armv7
COPY --from=compile-armv7 /opt/venv /opt/venv
######################################################################################

Expand Down

0 comments on commit 73a91ec

Please sign in to comment.