Skip to content

Instantly share code, notes, and snippets.

@niceonionslice
Created September 24, 2017 13:08
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 niceonionslice/63bce887fdedd3e7c32ba048fc11d99b to your computer and use it in GitHub Desktop.
Save niceonionslice/63bce887fdedd3e7c32ba048fc11d99b to your computer and use it in GitHub Desktop.
FROM ruby:2.4.1
RUN apt-get update && apt-get install -y mysql-client nodejs --no-install-recommends && rm -rf /var/lib/apt/lists/*
ARG APP_HOME
RUN mkdir -p $APP_HOME
WORKDIR $APP_HOME
ADD Gemfile $APP_HOME/
ADD Gemfile.lock $APP_HOME/
RUN bundle install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment