Last active
November 4, 2023 07:08
Revisions
-
richlander revised this gist
Apr 21, 2023 . No changes.There are no files selected for viewing
-
richlander revised this gist
Mar 24, 2023 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ FROM alpine ARG TARGETPLATFORM ARG TARGETOS -
richlander revised this gist
Mar 20, 2023 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -8,6 +8,6 @@ ARG BUILDPLATFORM ARG BUILDOS ARG BUILDARCH ARG BUILDVARIANT RUN echo "Building on $BUILDPLATFORM, targeting $TARGETPLATFORM" RUN echo "Building on ${BUILDOS} and ${BUILDARCH} with optional variant ${BUILDVARIANT}" RUN echo "Targeting ${TARGETOS} and ${TARGETARCH} with optional variant ${TARGETVARIANT}" -
richlander created this gist
Feb 6, 2023 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ FROM debian ARG TARGETPLATFORM ARG TARGETOS ARG TARGETARCH ARG TARGETVARIANT ARG BUILDPLATFORM ARG BUILDOS ARG BUILDARCH ARG BUILDVARIANT RUN echo "I am building on $BUILDPLATFORM, targeting $TARGETPLATFORM" RUN echo "I am building on ${BUILDOS} and ${BUILDARCH} with optional variant ${BUILDVARIANT}" RUN echo "I am targeting ${TARGETOS} and ${TARGETARCH} with optional variant ${TARGETVARIANT}"