Signed-off-by: Daniel Nephin <dnephin@docker.com>
This commit is contained in:
Daniel Nephin 2017-05-12 18:45:08 -04:00
Родитель eb8abc9598
Коммит 83a4afe264
1 изменённых файлов: 11 добавлений и 0 удалений

Просмотреть файл

@ -530,6 +530,17 @@ FROM extras:${CODE_VERSION}
CMD /code/run-extras
```
To use the default value of an `ARG` declared before the first `FROM` use an
`ARG` instruction without a value:
```Dockerfile
ARG SETTINGS=default
FROM busybox
ARG SETTINGS
```
## RUN
RUN has 2 forms: