File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ FROM amazonlinux:2023
2+
3+ RUN dnf update -y
4+ # Install nitro-cli dependencies
5+ RUN dnf install -y \
6+ aws-nitro-enclaves-cli \
7+ aws-nitro-enclaves-cli-devel \
8+ tar \
9+ unzip \
10+ curl-minimal \
11+ jq \
12+ shadow-utils \
13+ && dnf clean all
14+
15+ # Add enclaver system user
16+ RUN useradd -m enclaver
17+
18+ WORKDIR /build
19+
20+ ENTRYPOINT ["nitro-cli" ]
21+
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ use uuid::Uuid;
1919const ENCLAVE_OVERLAY_CHOWN : & str = "0:0" ;
2020const RELEASE_OVERLAY_CHOWN : & str = "0:0" ;
2121
22- const NITRO_CLI_IMAGE : & str = "registry.edgebit.io/ nitro-cli:latest " ;
22+ const NITRO_CLI_IMAGE : & str = "privadoid/aws- nitro-cli:1.4.2 " ;
2323const ODYN_IMAGE : & str = "registry.edgebit.io/odyn:latest" ;
2424const ODYN_IMAGE_BINARY_PATH : & str = "/usr/local/bin/odyn" ;
2525const RELEASE_BASE_IMAGE : & str = "registry.edgebit.io/enclaver-wrapper-base:latest" ;
You can’t perform that action at this time.
0 commit comments