From fbb7f2de6f49106bb93a4f61027f01e28741b616 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Tue, 5 Jul 2016 17:25:14 -0700 Subject: [PATCH] Apply minor whitespace adjustment --- rails/deprecated.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rails/deprecated.md b/rails/deprecated.md index 203c68ac7..2f01ed794 100644 --- a/rails/deprecated.md +++ b/rails/deprecated.md @@ -7,7 +7,10 @@ For example, a `Dockerfile` similar to the following would be a good starting po ```dockerfile FROM ruby:2.3 -RUN apt-get update && apt-get install -y postgresql-client --no-install-recommends && rm -rf /var/lib/apt/lists/* +RUN apt-get update \ + && apt-get install -y --no-install-recommends \ + postgresql-client \ + && rm -rf /var/lib/apt/lists/* WORKDIR /usr/src/app COPY Gemfile* ./