Created
April 28, 2018 14:11
-
-
Save srz-zumix/710c2f6e8a59f86048094b8e83d565f0 to your computer and use it in GitHub Desktop.
blog
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
| # FROM の前に ARG が取れる | |
| ARG VERSION=latest | |
| # FROM の指定を引数可変にできる | |
| FROM srzzumix/googletest:${VERSION} | |
| # FROM 前の ARG を参照する場合はデフォルト値指定なしで再定義する | |
| ARG VERSION | |
| RUN echo ${VERSION} | tee image_version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment