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}" \