From 48ee443ecaae002cc688c7b03e07ecc670b3b193 Mon Sep 17 00:00:00 2001 From: Mihai Borobocea Date: Wed, 4 Feb 2015 20:48:53 +0200 Subject: [PATCH] docs: fix typo There are 2 not 3 RUN instructions in the userguide's Dockerfile. Signed-off-by: Mihai Borobocea --- docs/sources/userguide/dockerimages.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sources/userguide/dockerimages.md b/docs/sources/userguide/dockerimages.md index 4cffba5df1..6224479fb7 100644 --- a/docs/sources/userguide/dockerimages.md +++ b/docs/sources/userguide/dockerimages.md @@ -263,7 +263,7 @@ this case we're basing our new image on an Ubuntu 14.04 image. Next we use the `MAINTAINER` instruction to specify who maintains our new image. -Lastly, we've specified three `RUN` instructions. A `RUN` instruction executes +Lastly, we've specified two `RUN` instructions. A `RUN` instruction executes a command inside the image, for example installing a package. Here we're updating our APT cache, installing Ruby and RubyGems and then installing the Sinatra gem.