Skip to content

Instantly share code, notes, and snippets.

@r7kamura
Created January 24, 2019 01:48
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 r7kamura/46251d84395e036d356b274b9c923637 to your computer and use it in GitHub Desktop.
Save r7kamura/46251d84395e036d356b274b9c923637 to your computer and use it in GitHub Desktop.
FROM ruby:2.5.1
WORKDIR /app
RUN gem install bundler -v 2.0.1
COPY \
Gemfile \
Gemfile.lock \
/app/
RUN bundle install --jobs=4
COPY . /app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment