mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #9057 from andi5/typo-best-practices
Fix mkdir typo in dockerfile_best-practices.md.
This commit is contained in:
commit
1e75c9e8b4
1 changed files with 1 additions and 1 deletions
|
@ -281,7 +281,7 @@ things like:
|
||||||
|
|
||||||
And instead, do something like:
|
And instead, do something like:
|
||||||
|
|
||||||
RUN mdkir -p /usr/src/things \
|
RUN mkdir -p /usr/src/things \
|
||||||
&& curl -SL http://example.com/big.tar.gz \
|
&& curl -SL http://example.com/big.tar.gz \
|
||||||
| tar -xJC /usr/src/things \
|
| tar -xJC /usr/src/things \
|
||||||
&& make -C /usr/src/things all
|
&& make -C /usr/src/things all
|
||||||
|
|
Loading…
Reference in a new issue