Browse Source

Merge pull request #7185 from thaJeztah/patch-1

Fix incorrect path in ENTRYPOINT example
Sven Dowideit 11 years ago
parent
commit
ff28b0b919
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/sources/reference/builder.md

+ 1 - 1
docs/sources/reference/builder.md

@@ -409,7 +409,7 @@ optional but default, you could use a `CMD` instruction:
 
 
     FROM ubuntu
     FROM ubuntu
     CMD ["-l"]
     CMD ["-l"]
-    ENTRYPOINT ["/usr/bin/ls"]
+    ENTRYPOINT ["ls"]
 
 
 > **Note**:
 > **Note**:
 > It is preferable to use the JSON array format for specifying
 > It is preferable to use the JSON array format for specifying