Skip to content

Instantly share code, notes, and snippets.

@Gurpartap
Created August 31, 2014 23:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Gurpartap/04bece7a200f451e681f to your computer and use it in GitHub Desktop.
Save Gurpartap/04bece7a200f451e681f to your computer and use it in GitHub Desktop.
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