Created
December 16, 2014 22:20
-
-
Save fuzzygroup/957082d015cacfaff017 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ruby:2.1.5 | |
RUN apt-get update -qq && apt-get install -y build-essential libpq-dev | |
RUN mkdir /myapp | |
WORKDIR /myapp | |
ADD Gemfile /myapp/Gemfile | |
ADD Gemfile.lock /myapp/Gemfile.lock | |
RUN bundle install | |
ADD . /myapp | |
EXPOSE 3500 3500 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment