Created
August 31, 2014 23:25
-
-
Save Gurpartap/04bece7a200f451e681f to your computer and use it in GitHub Desktop.
This file contains hidden or 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 gurpartap/ruby-build:2.1.2 | |
RUN mkdir /myapp | |
WORKDIR /myapp | |
ADD Gemfile /myapp/Gemfile | |
RUN bundle install | |
ADD . /myapp | |
EXPOSE 3000 | |
CMD bundle exec thin start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment