mirror of https://github.com/docker/cli.git
Document arg before from
Signed-off-by: Daniel Nephin <dnephin@docker.com>
This commit is contained in:
parent
d8e04f68d3
commit
c6e78b9c5f
|
|
@ -530,6 +530,17 @@ FROM extras:${CODE_VERSION}
|
||||||
CMD /code/run-extras
|
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
|
||||||
|
|
||||||
RUN has 2 forms:
|
RUN has 2 forms:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue