Skip to content

Commit 7fc9533

Browse files
author
Nobody
committed
Add 2023.8.20250707.0 arm64 image
1 parent a3932af commit 7fc9533

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

Dockerfile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
FROM alpine:latest AS verify
2+
RUN apk add --no-cache curl tar xz
3+
4+
RUN ROOTFS=$(curl -sfOJL -w "al2023-container-2023.8.20250707.0-arm64.tar.xz" "https://amazon-linux-docker-sources.s3.amazonaws.com/al2023/2023.8.20250707.0/al2023-container-2023.8.20250707.0-arm64.tar.xz") \
5+
&& echo '7f041f362bfb03736ee7c11343b24b2c6e8a47d6f3e94d9182380962f28b6b75 al2023-container-2023.8.20250707.0-arm64.tar.xz' >> /tmp/al2023-container-2023.8.20250707.0-arm64.tar.xz.sha256 \
6+
&& cat /tmp/al2023-container-2023.8.20250707.0-arm64.tar.xz.sha256 \
7+
&& sha256sum -c /tmp/al2023-container-2023.8.20250707.0-arm64.tar.xz.sha256 \
8+
&& mkdir /rootfs \
9+
&& tar -C /rootfs --extract --file "${ROOTFS}"
10+
11+
FROM scratch AS root
12+
COPY --from=verify /rootfs/ /
13+
14+
CMD ["/bin/bash"]

version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2023.8.20250707.0

0 commit comments

Comments
 (0)