Created
December 26, 2021 18:12
-
-
Save DerekChia/63303e68126cd7747fb0baa2fbe235e4 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 characters
# First stage | |
FROM debian as base | |
ENV VAR_ENV=env_value | |
ARG VAR_ARG=arg_value | |
ONBUILD ENV VAR_ENV_ONBUILD=onbuild_env_value | |
ONBUILD ARG VAR_ARG_ONBUILD=onbuild_arg_value | |
RUN echo "First stage build time:"; env | grep VAR_ | |
# Second stage | |
FROM base | |
RUN echo "Second stage build time:"; env | grep VAR_ | |
# Third stage | |
FROM base | |
RUN echo "Third stage build time:"; env | grep VAR_ | |
CMD ["bash", "-c", "echo At runtime; env | grep VAR_"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment