Merge pull request #33184 from dnephin/doc-arg-before-from

Document arg before from
This commit is contained in:
Sebastiaan van Stijn 2017-05-15 13:35:23 +02:00 committed by GitHub
commit 99b5fadd0c
1 changed files with 11 additions and 0 deletions

View File

@ -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: