Skip to content

Instantly share code, notes, and snippets.

@srz-zumix
Created April 28, 2018 14:11
Show Gist options
  • Select an option

  • Save srz-zumix/710c2f6e8a59f86048094b8e83d565f0 to your computer and use it in GitHub Desktop.

Select an option

Save srz-zumix/710c2f6e8a59f86048094b8e83d565f0 to your computer and use it in GitHub Desktop.
blog
# 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