From be4454c4f0ba1a1d9fdd2f0ec7e631403ee61f63 Mon Sep 17 00:00:00 2001 From: Lajos Papp Date: Wed, 24 Sep 2014 10:45:56 +0200 Subject: [PATCH] Fix code example formatting in best-practices article Signed-off-by: Lajos Papp --- docs/sources/articles/dockerfile_best-practices.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/sources/articles/dockerfile_best-practices.md b/docs/sources/articles/dockerfile_best-practices.md index a837d1e002..520c3bfb43 100644 --- a/docs/sources/articles/dockerfile_best-practices.md +++ b/docs/sources/articles/dockerfile_best-practices.md @@ -68,12 +68,12 @@ review. Adding a space before a backslash (`\`) helps as well. Here’s an example from the [`buildpack-deps` image](https://github.com/docker-library/buildpack-deps): - RUN apt-get update && apt-get install -y \ - bzr \ - cvs \ - git \ - mercurial \ - subversion + RUN apt-get update && apt-get install -y \ + bzr \ + cvs \ + git \ + mercurial \ + subversion ## The `Dockerfile` instructions