Skip to content

Commit

Permalink
Dockerfile for 3.16.2
Browse files Browse the repository at this point in the history
  • Loading branch information
LeKovr committed Aug 9, 2022
1 parent 340cc27 commit 16cf4ac
Showing 1 changed file with 14 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 scratch AS arch-arm
ADD armv7/alpine-minirootfs-3.16.2-armv7.tar.gz /

FROM scratch AS arch-amd64
ADD x86_64/alpine-minirootfs-3.16.2-x86_64.tar.gz /

FROM scratch AS arch-arm64
ADD aarch64/alpine-minirootfs-3.16.2-aarch64.tar.gz /

FROM arch-${TARGETARCH} AS final
ARG TARGETARCH
RUN echo "I am running for $TARGETARCH"
CMD ["/bin/sh"]

0 comments on commit 16cf4ac

Please sign in to comment.