Browse code

Fix the url in comparison of "COPY" and "RUN curl"

From context on next line,`tar -xJC` implies
the file is `big.tar.xz` instead of `big.tar.gz`.

Signed-off-by: Wenxuan Zhao <viz@linux.com>

Wenxuan Zhao authored on 2015/06/19 01:32:21
Showing 1 changed files
... ...
@@ -290,7 +290,7 @@ things like:
290 290
 And instead, do something like:
291 291
 
292 292
     RUN mkdir -p /usr/src/things \
293
-        && curl -SL http://example.com/big.tar.gz \
293
+        && curl -SL http://example.com/big.tar.xz \
294 294
         | tar -xJC /usr/src/things \
295 295
         && make -C /usr/src/things all
296 296