1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #7391 from LK4D4/fix_relative_workdir_example

Fix example of relative WORKDIR
This commit is contained in:
James Turnbull 2014-08-03 10:14:33 -04:00
commit d48492a12e

View file

@ -444,7 +444,10 @@ It can be used multiple times in the one `Dockerfile`. If a relative path
is provided, it will be relative to the path of the previous `WORKDIR`
instruction. For example:
WORKDIR /a WORKDIR b WORKDIR c RUN pwd
WORKDIR /a
WORKDIR b
WORKDIR c
RUN pwd
The output of the final `pwd` command in this Dockerfile would be
`/a/b/c`.