Skip to content

Commit

Permalink
Update Python version in base image to 3.12.5
Browse files Browse the repository at this point in the history
This commit changes the default Python version from 3.8.11 to 3.12.5 in both the GitHub workflow configuration and the base Dockerfile. This update ensures that we use a more recent version of Python for building the base image, potentially leveraging improved performance and new features.
  • Loading branch information
meanmail committed Sep 18, 2024
1 parent 6046ea0 commit 7c9fbc1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_base_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
type: string
description: 'Image tag'
required: true
default: 'py3.8.11-java11.0.11-node14.17.3-go1.18.5'
default: 'py3.12.5-java11.0.11-node14.17.3-go1.18.5'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion base.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.8.11-slim
FROM python:3.12.5-slim

#########
# Taken from https://github.com/docker-library/openjdk/blob/608f26c5ea63ca34070b439c904cb94a30f6b0c1/11/jdk/slim-buster/Dockerfile
Expand Down

0 comments on commit 7c9fbc1

Please sign in to comment.