Skip to content

Commit

Permalink
chore: update Python versions in Dockerfiles
Browse files Browse the repository at this point in the history
Update Python versions to 3.10.14, 3.11.9, and 3.12.3 in x86 and x86_64
Dockerfiles for Alpine base images.

- Update PYTHON_VERSION to the latest patch version for each major release
- Keep consistency across all Dockerfiles by updating the Python version variables
  • Loading branch information
t5scc committed Apr 29, 2024
1 parent 1df7c60 commit efa1351
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion 3.10/x86/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM i386/alpine:3.18.3 as base_builder

ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin \
LANG=C.UTF-8 \
PYTHON_VERSION=3.10.13 \
PYTHON_VERSION=3.10.14 \
IS_32BIT=1

WORKDIR /src
Expand Down
2 changes: 1 addition & 1 deletion 3.10/x86_64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM alpine:3.18.3 as base_builder

ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin \
LANG=C.UTF-8 \
PYTHON_VERSION=3.10.13
PYTHON_VERSION=3.10.14

WORKDIR /src
RUN set -eux && apk add --no-cache ca-certificates tzdata && \
Expand Down
2 changes: 1 addition & 1 deletion 3.11/x86/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM i386/alpine:3.18.3 as base_builder

ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin \
LANG=C.UTF-8 \
PYTHON_VERSION=3.11.5 \
PYTHON_VERSION=3.11.9 \
IS_32BIT=1

WORKDIR /src
Expand Down
2 changes: 1 addition & 1 deletion 3.11/x86_64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM alpine:3.18.3 as base_builder

ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin \
LANG=C.UTF-8 \
PYTHON_VERSION=3.11.5
PYTHON_VERSION=3.11.9

WORKDIR /src
RUN set -eux && apk add --no-cache ca-certificates tzdata && \
Expand Down
2 changes: 1 addition & 1 deletion 3.12/x86/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM i386/alpine:3.18.3 as base_builder

ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin \
LANG=C.UTF-8 \
PYTHON_VERSION=3.12.0 \
PYTHON_VERSION=3.12.3 \
IS_32BIT=1

WORKDIR /src
Expand Down
2 changes: 1 addition & 1 deletion 3.12/x86_64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM alpine:3.18.3 as base_builder

ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin \
LANG=C.UTF-8 \
PYTHON_VERSION=3.12.0
PYTHON_VERSION=3.12.3

WORKDIR /src
RUN set -eux && apk add --no-cache ca-certificates tzdata && \
Expand Down

0 comments on commit efa1351

Please sign in to comment.