Browse code

Fix incorrect path in ENTRYPOINT example

The ENTRYPOINT example uses "/usr/bin/ls" as path, but `ls` is located at `/bin/ls`.

Docker-DCO-1.1-Signed-off-by: Sebastiaan van Stijn <github@gone.nl> (github: thaJeztah)

Sebastiaan van Stijn authored on 2014/07/23 21:44:17
Showing 1 changed files
... ...
@@ -409,7 +409,7 @@ optional but default, you could use a `CMD` instruction:
409 409
 
410 410
     FROM ubuntu
411 411
     CMD ["-l"]
412
-    ENTRYPOINT ["/usr/bin/ls"]
412
+    ENTRYPOINT ["ls"]
413 413
 
414 414
 > **Note**:
415 415
 > It is preferable to use the JSON array format for specifying