Skip to content

Commit

Permalink
Add 2023.4.20240319.1 arm64 image
Browse files Browse the repository at this point in the history
  • Loading branch information
Nobody committed Mar 21, 2024
1 parent a3932af commit a2b17b0
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM alpine:3.17 AS verify
RUN apk add --no-cache curl tar xz

RUN ROOTFS=$(curl -sfOJL -w "al2023-container-2023.4.20240319.1-arm64.tar.xz" "https://amazon-linux-docker-sources.s3.amazonaws.com/al2023/2023.4.20240319.1/al2023-container-2023.4.20240319.1-arm64.tar.xz") \
&& echo '9965b27c32f46073bcd2bd3703c4c8507306359083c19a860e267e39d85c82f5 al2023-container-2023.4.20240319.1-arm64.tar.xz' >> /tmp/al2023-container-2023.4.20240319.1-arm64.tar.xz.sha256 \
&& cat /tmp/al2023-container-2023.4.20240319.1-arm64.tar.xz.sha256 \
&& sha256sum -c /tmp/al2023-container-2023.4.20240319.1-arm64.tar.xz.sha256 \
&& mkdir /rootfs \
&& tar -C /rootfs --extract --file "${ROOTFS}"

FROM scratch AS root
COPY --from=verify /rootfs/ /

CMD ["/bin/bash"]
1 change: 1 addition & 0 deletions version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2023.4.20240319.1

0 comments on commit a2b17b0

Please sign in to comment.