Browse Source

Fix mkdir typo in dockerfile_best-practices.md.

Andreas Köhler 10 years ago
parent
commit
b95f9c10ff
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/sources/articles/dockerfile_best-practices.md

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

@@ -281,7 +281,7 @@ things 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 \
         | tar -xJC /usr/src/things \
         && make -C /usr/src/things all