Browse code

docs: fix typo

There are 2 not 3 RUN instructions in the userguide's Dockerfile.

Signed-off-by: Mihai Borobocea <MihaiBorobocea@gmail.com>

Mihai Borobocea authored on 2015/02/05 03:48:53
Showing 1 changed files
... ...
@@ -263,7 +263,7 @@ this case we're basing our new image on an Ubuntu 14.04 image.
263 263
 
264 264
 Next we use the `MAINTAINER` instruction to specify who maintains our new image.
265 265
 
266
-Lastly, we've specified three `RUN` instructions. A `RUN` instruction executes
266
+Lastly, we've specified two `RUN` instructions. A `RUN` instruction executes
267 267
 a command inside the image, for example installing a package. Here we're
268 268
 updating our APT cache, installing Ruby and RubyGems and then installing the
269 269
 Sinatra gem.