diff options
author | Omar Padron <omar.padron@kitware.com> | 2020-06-18 05:16:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-18 11:16:24 +0200 |
commit | 82eb71cb953db0d95d15caed0d3b73232736e638 (patch) | |
tree | 82001f14a6ecf1fdcb32096549e67474db44a531 /share | |
parent | 910d25870616f7407f5b28649c6134e75b7dacbf (diff) | |
download | spack-82eb71cb953db0d95d15caed0d3b73232736e638.tar.gz spack-82eb71cb953db0d95d15caed0d3b73232736e638.tar.bz2 spack-82eb71cb953db0d95d15caed0d3b73232736e638.tar.xz spack-82eb71cb953db0d95d15caed0d3b73232736e638.zip |
Explicitly install setuptools in docker images (#17143)
Diffstat (limited to 'share')
-rw-r--r-- | share/spack/docker/centos-6.dockerfile | 1 | ||||
-rw-r--r-- | share/spack/docker/centos-7.dockerfile | 1 | ||||
-rw-r--r-- | share/spack/docker/ubuntu-1604.dockerfile | 1 | ||||
-rw-r--r-- | share/spack/docker/ubuntu-1804.dockerfile | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/share/spack/docker/centos-6.dockerfile b/share/spack/docker/centos-6.dockerfile index fe919f3c88..8c971124a5 100644 --- a/share/spack/docker/centos-6.dockerfile +++ b/share/spack/docker/centos-6.dockerfile @@ -42,6 +42,7 @@ RUN yum update -y \ patch \ python \ python-pip \ + python-setuptools \ tcl \ unzip \ which \ diff --git a/share/spack/docker/centos-7.dockerfile b/share/spack/docker/centos-7.dockerfile index 67affa1af9..292663d922 100644 --- a/share/spack/docker/centos-7.dockerfile +++ b/share/spack/docker/centos-7.dockerfile @@ -42,6 +42,7 @@ RUN yum update -y \ patch \ python \ python-pip \ + python-setuptools \ tcl \ unzip \ which \ diff --git a/share/spack/docker/ubuntu-1604.dockerfile b/share/spack/docker/ubuntu-1604.dockerfile index 7891c5a261..1f7db8bea9 100644 --- a/share/spack/docker/ubuntu-1604.dockerfile +++ b/share/spack/docker/ubuntu-1604.dockerfile @@ -41,6 +41,7 @@ RUN apt-get -yqq update \ make \ python3 \ python3-pip \ + python3-setuptools \ tcl \ unzip \ && locale-gen en_US.UTF-8 \ diff --git a/share/spack/docker/ubuntu-1804.dockerfile b/share/spack/docker/ubuntu-1804.dockerfile index c079331476..a8d9577b66 100644 --- a/share/spack/docker/ubuntu-1804.dockerfile +++ b/share/spack/docker/ubuntu-1804.dockerfile @@ -41,6 +41,7 @@ RUN apt-get -yqq update \ make \ python3 \ python3-pip \ + python3-setuptools \ tcl \ unzip \ && locale-gen en_US.UTF-8 \ |