You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RUN apt-get update -qq && apt-get install -y build-essential libpq-dev
RUN mkdir /rails_app
WORKDIR /rails_app
ADD Gemfile /rails_app/Gemfile
ADD Gemfile.lock /rails_app/Gemfile.lock
RUN gem install bundler \
&& bundle install
# this command isn't needed for the normal usage with docker-compose that starts the image with a Volume that shadows this original directory. But it doesn't hurt