Created
January 24, 2020 16:04
-
-
Save ohnotnow/3276ed65a4668a5b51be560339d4abad to your computer and use it in GitHub Desktop.
Arg/Env
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 characters
FROM whatever | |
ARG GIT_URL | |
ENV GIT_URL=${GIT_URL} | |
RUN git clone "${GIT_URL}" | |
# docker build --build-arg GIT_URL=https://.... -t myimage . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment