We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cff0cd2 commit 5f49055Copy full SHA for 5f49055
1 file changed
container/Dockerfile
@@ -2,21 +2,23 @@ FROM ubuntu:24.04
2
3
ENV DEBIAN_FRONTEND=noninteractive
4
5
-# Install AWS cli
6
RUN apt-get update -y && \
7
apt-get install -y --no-install-recommends \
8
gcc gfortran g++ \
9
gcc-10 gfortran-10 g++-10 \
10
clang \
11
libc-dev \
12
- awscli \
13
bash-completion \
+ python \
+ python3-pip \
14
emacs \
15
jq \
16
less \
17
vim \
18
&& rm -rf /var/lib/apt/lists/*
19
20
+RUN pip3 --no-cache-dir install --upgrade awscli
21
+
22
# Download the buildcache
23
RUN mkdir /mirror
24
RUN aws --region us-east-1 --no-sign-request s3 sync --only-show-errors s3://spack-binaries/v0.23.1/tutorial /mirror
0 commit comments