summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
Diffstat (limited to 'share')
-rw-r--r--share/spack/templates/container/centos_stream.dockerfile8
1 files changed, 4 insertions, 4 deletions
diff --git a/share/spack/templates/container/centos_stream.dockerfile b/share/spack/templates/container/centos_stream.dockerfile
index 292d76d73c..427b242b8d 100644
--- a/share/spack/templates/container/centos_stream.dockerfile
+++ b/share/spack/templates/container/centos_stream.dockerfile
@@ -19,11 +19,11 @@ RUN dnf update -y \
iproute \
make \
patch \
- python38 \
- python38-pip \
- python38-setuptools \
+ python3.11 \
+ python3.11-setuptools \
unzip \
- && pip3 install boto3 \
+ && python3.11 -m ensurepip \
+ && pip3.11 install boto3 \
&& rm -rf /var/cache/dnf \
&& dnf clean all
{% endblock %}