Skip to content

Commit 40186b3

Browse files
Update amazonlinux2023.Dockerfile
1 parent 1385f2f commit 40186b3

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

scripts/aws/pipeline/amazonlinux2023.Dockerfile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,14 @@ RUN dnf update -y
55
# systemd is not a hard requirement for Amazon ECS Anywhere, but the installation script currently only supports systemd to run.
66
# Amazon ECS Anywhere can be used without systemd, if you set up your nodes and register them into your ECS cluster **without** the installation script.
77
RUN dnf -y groupinstall "Development Tools" \
8-
&& dnf -y install systemd vim-common wget git tar libstdc++-static.x86_64 cmake cmake3 aws-nitro-enclaves-cli aws-nitro-enclaves-cli-devel \
8+
&& dnf -y install systemd vim-common wget git tar libstdc++-static.x86_64 cmake cmake3 \
99
&& dnf clean all
1010

11+
ENV S3_BUCKET=troubleshoot-delete-uid2-aws
12+
ENV ZIP_FILE=enclave-cli-1.5.3rc.zip
13+
14+
RUN aws s3 cp s3://$S3_BUCKET/$ZIP_FILE /tmp/ && unzip /tmp/$ZIP_FILE -d /tmp/ && dnf install -y /tmp/*.rpm
15+
1116
RUN systemctl enable docker
1217

1318
RUN wget https://www.inet.no/dante/files/dante-1.4.3.tar.gz \

0 commit comments

Comments
 (0)