Skip to content

Commit 5f49055

Browse files
committed
PIP install the awscli client via pip
1 parent cff0cd2 commit 5f49055

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

container/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,23 @@ FROM ubuntu:24.04
22

33
ENV DEBIAN_FRONTEND=noninteractive
44

5-
# Install AWS cli
65
RUN apt-get update -y && \
76
apt-get install -y --no-install-recommends \
87
gcc gfortran g++ \
98
gcc-10 gfortran-10 g++-10 \
109
clang \
1110
libc-dev \
12-
awscli \
1311
bash-completion \
12+
python \
13+
python3-pip \
1414
emacs \
1515
jq \
1616
less \
1717
vim \
1818
&& rm -rf /var/lib/apt/lists/*
1919

20+
RUN pip3 --no-cache-dir install --upgrade awscli
21+
2022
# Download the buildcache
2123
RUN mkdir /mirror
2224
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

Comments
 (0)