فهرست منبع

Apply minor whitespace adjustment

Tianon Gravi 9 سال پیش
والد
کامیت
fbb7f2de6f
1فایلهای تغییر یافته به همراه4 افزوده شده و 1 حذف شده
  1. 4 1
      rails/deprecated.md

+ 4 - 1
rails/deprecated.md

@@ -7,7 +7,10 @@ For example, a `Dockerfile` similar to the following would be a good starting po
 ```dockerfile
 ```dockerfile
 FROM ruby:2.3
 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
 WORKDIR /usr/src/app
 COPY Gemfile* ./
 COPY Gemfile* ./