File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change 7
7
# then copy the binary from it later in the build.
8
8
FROM quay.io/minio/mc:RELEASE.2023-04-12T02-21-51Z AS mc
9
9
10
- FROM ubuntu:22 .04
10
+ FROM ubuntu:24 .04
11
11
12
12
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
13
- awscli \
14
13
build-essential \
15
14
curl \
16
15
git \
@@ -20,7 +19,14 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
20
19
openssl \
21
20
pkg-config \
22
21
python3 \
23
- socat
22
+ socat \
23
+ unzip
24
+
25
+ # Install the AWS CLI
26
+ RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-$(arch).zip" -o "awscliv2.zip" ; \
27
+ unzip awscliv2.zip; \
28
+ rm awscliv2.zip; \
29
+ ./aws/install
24
30
25
31
# Install rustup while removing the pre-installed stable toolchain.
26
32
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | \
You can’t perform that action at this time.
0 commit comments