Explorar o código

Run update.sh

Docker Library Bot %!s(int64=9) %!d(string=hai) anos
pai
achega
cb1bd0cee6
Modificáronse 1 ficheiros con 4 adicións e 1 borrados
  1. 4 1
      rails/README.md

+ 4 - 1
rails/README.md

@@ -9,7 +9,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* ./