Skip to content

Commit

Permalink
update python to 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
usrbinkat committed Apr 9, 2024
1 parent 3cc83cd commit 03b4038
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
9 changes: 4 additions & 5 deletions .github/docker/slim-all/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,17 @@ LABEL tag="slim-all"

#################################################################################
# Install Programming Language Tooling
# - golang
# - nodejs
# - python
# - dotnet
#################################################################################
# Python
ARG APT_PKGS="\
python3 \
python3.11 \
python3.11-venv \
python3.11-dev \
python3-pip \
python3-venv \
"
RUN echo \
&& bash -c "${apt_update}" \
&& bash -c "${apt_install} ${APT_PKGS}" \
&& bash -c "${apt_clean}" \
&& sudo update-alternatives --install \
Expand Down
5 changes: 3 additions & 2 deletions .github/docker/slim-python/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ LABEL tag="slim-python"
# Install Programming Language Tooling
# - python
ARG APT_PKGS="\
python3 \
python3.11 \
python3.11-venv \
python3.11-dev \
python3-pip \
python3-venv \
"
RUN echo \
&& bash -c "${apt_install} ${APT_PKGS}" \
Expand Down

0 comments on commit 03b4038

Please sign in to comment.