Browse Source

Merge pull request #14016 from vizv/patch-1

fix the url in article "Best practices for writing Dockerfiles"
James Turnbull 10 years ago
parent
commit
1487350b85
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/articles/dockerfile_best-practices.md

+ 1 - 1
docs/articles/dockerfile_best-practices.md

@@ -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