Merge pull request #378 from orchardup/use-ruby-image-for-rails-tutorial

Use ruby image for rails docs
This commit is contained in:
Aanand Prasad 2014-08-06 16:51:04 -07:00
commit 0a15e7fe9c
1 changed files with 1 additions and 1 deletions

View File

@ -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 binaryphile/ruby:2.0.0-p247
FROM ruby
RUN apt-get update -qq && apt-get install -y build-essential libpq-dev
RUN mkdir /myapp
WORKDIR /myapp