From 35f29156ee322f063e7a6f42af256e1597320a3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cezary=20Skrzy=C5=84ski?= Date: Wed, 20 Apr 2022 16:36:45 +0200 Subject: [PATCH] #1740: CI: add python3 to Docker images Add python3 package to Docker images using MPICH 4.0.2 (new dependency). --- ci/docker/alpine-cpp.dockerfile | 1 + ci/docker/ubuntu-20.04-clang-cpp.dockerfile | 1 + ci/docker/ubuntu-20.04-gnu-cpp.dockerfile | 1 + 3 files changed, 3 insertions(+) diff --git a/ci/docker/alpine-cpp.dockerfile b/ci/docker/alpine-cpp.dockerfile index 542cf4a425..5b8e97055e 100644 --- a/ci/docker/alpine-cpp.dockerfile +++ b/ci/docker/alpine-cpp.dockerfile @@ -26,6 +26,7 @@ RUN apk add --no-cache \ m4 \ make \ ninja \ + python3 \ wget \ zlib \ zlib-dev diff --git a/ci/docker/ubuntu-20.04-clang-cpp.dockerfile b/ci/docker/ubuntu-20.04-clang-cpp.dockerfile index 5aaf60758b..813934c5c1 100644 --- a/ci/docker/ubuntu-20.04-clang-cpp.dockerfile +++ b/ci/docker/ubuntu-20.04-clang-cpp.dockerfile @@ -26,6 +26,7 @@ RUN apt-get update -y -q && \ libomp5 \ libomp-dev \ llvm-10 \ + python3 \ ccache && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* diff --git a/ci/docker/ubuntu-20.04-gnu-cpp.dockerfile b/ci/docker/ubuntu-20.04-gnu-cpp.dockerfile index 906711f48c..c69e50c8ab 100644 --- a/ci/docker/ubuntu-20.04-gnu-cpp.dockerfile +++ b/ci/docker/ubuntu-20.04-gnu-cpp.dockerfile @@ -29,6 +29,7 @@ RUN apt-get update -y -q && \ make-guile \ libomp5 \ libunwind-dev \ + python3 \ ccache && \ apt-get clean && \ rm -rf /var/lib/apt/lists/*