This brings over the initial buildx prototype from pulumi/pulumi-docker and fixes various build and release issues.
6 lines
121 B
Docker
6 lines
121 B
Docker
FROM alpine
|
|
|
|
ARG SET_ME_TO_TRUE
|
|
RUN [ "$SET_ME_TO_TRUE" = "true" ]
|
|
RUN echo "That's the correct build arg, thanks! 👍"
|