1
0
Fork 0
mirror of https://github.com/docker-library/ruby.git synced 2022-11-09 11:41:34 -05:00

Remove setting from onbuild as should inherit from ruby image

This commit is contained in:
Adrian Perez 2016-01-23 21:28:18 +01:00
parent a1a3705311
commit 81a9ccef01
4 changed files with 0 additions and 8 deletions

View file

@ -3,8 +3,6 @@ FROM ruby:2.0
# throw errors if Gemfile has been modified since Gemfile.lock
RUN bundle config --global frozen 1
RUN bundle config --global silence_root_warning true
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app

View file

@ -3,8 +3,6 @@ FROM ruby:2.1
# throw errors if Gemfile has been modified since Gemfile.lock
RUN bundle config --global frozen 1
RUN bundle config --global silence_root_warning true
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app

View file

@ -3,8 +3,6 @@ FROM ruby:2.2
# throw errors if Gemfile has been modified since Gemfile.lock
RUN bundle config --global frozen 1
RUN bundle config --global silence_root_warning true
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app

View file

@ -3,8 +3,6 @@ FROM ruby:2.3
# throw errors if Gemfile has been modified since Gemfile.lock
RUN bundle config --global frozen 1
RUN bundle config --global silence_root_warning true
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app