1
0
mirror of https://github.com/docker/cli.git synced 2026-01-19 21:41:31 +03:00

Merge pull request #14016 from vizv/patch-1

fix the url in article "Best practices for writing Dockerfiles"
Upstream-commit: 1487350b85321cef1bc0d194b81f07428dab4b27
Component: engine
This commit is contained in:
James Turnbull
2015-06-18 13:05:26 -07:00

View File

@@ -290,7 +290,7 @@ things like:
And instead, do something like:
RUN mkdir -p /usr/src/things \
&& curl -SL http://example.com/big.tar.gz \
&& curl -SL http://example.com/big.tar.xz \
| tar -xJC /usr/src/things \
&& make -C /usr/src/things all