From 03b4038a8c661fd044d27c441e0af9c8aeb35b5a Mon Sep 17 00:00:00 2001 From: Kat Morgan Date: Mon, 8 Apr 2024 20:48:02 -0700 Subject: [PATCH] update python to 3.11 --- .github/docker/slim-all/Dockerfile | 9 ++++----- .github/docker/slim-python/Dockerfile | 5 +++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/docker/slim-all/Dockerfile b/.github/docker/slim-all/Dockerfile index 337b7dc..c26b0aa 100644 --- a/.github/docker/slim-all/Dockerfile +++ b/.github/docker/slim-all/Dockerfile @@ -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 \ diff --git a/.github/docker/slim-python/Dockerfile b/.github/docker/slim-python/Dockerfile index a0ec25b..2bb9b80 100644 --- a/.github/docker/slim-python/Dockerfile +++ b/.github/docker/slim-python/Dockerfile @@ -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}" \