Selaa lähdekoodia

be explicit with a ruby version number in the Dockerfile

Signed-off-by: Richard Adams <[email protected]>
Richard Adams 10 vuotta sitten
vanhempi
sitoutus
9a90a27376
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      docs/rails.md

+ 1 - 1
docs/rails.md

@@ -10,7 +10,7 @@ We're going to use Fig to set up and run a Rails/PostgreSQL app. Before starting
 
 Let's set up the three files that'll get us started. First, our app is going to be running inside a Docker container which contains all of its dependencies. We can define what goes inside that Docker container using a file called `Dockerfile`. It'll contain this to start with:
 
-    FROM ruby
+    FROM ruby:2.2.0
     RUN apt-get update -qq && apt-get install -y build-essential libpq-dev
     RUN mkdir /myapp
     WORKDIR /myapp