mirror of https://github.com/docker/cli.git
Merge pull request #3142 from govindrai/patch-1
Add information on WORKDIR
This commit is contained in:
commit
5e0f1b9dcc
|
@ -1824,6 +1824,11 @@ RUN pwd
|
||||||
The output of the final `pwd` command in this `Dockerfile` would be
|
The output of the final `pwd` command in this `Dockerfile` would be
|
||||||
`/path/$DIRNAME`
|
`/path/$DIRNAME`
|
||||||
|
|
||||||
|
If not specified, the default working directory is `/`. In practice, if you aren't building a Dockerfile from scratch (`FROM scratch`),
|
||||||
|
the `WORKDIR` may likely be set by the base image you're using.
|
||||||
|
|
||||||
|
Therefore, to avoid unintended operations in unknown directories, it is best practice to set your `WORKDIR` explicitly.
|
||||||
|
|
||||||
## ARG
|
## ARG
|
||||||
|
|
||||||
```dockerfile
|
```dockerfile
|
||||||
|
|
Loading…
Reference in New Issue