mirror of
https://github.com/docker-library/ruby.git
synced 2022-11-09 11:41:34 -05:00
Merge pull request #63 from blackxored/silence-bundler-root-warning-by-default
Silence bundler's root warning by default
This commit is contained in:
commit
7266262fab
8 changed files with 16 additions and 8 deletions
|
@ -35,7 +35,8 @@ ENV BUNDLER_VERSION 1.11.2
|
|||
|
||||
RUN gem install bundler --version "$BUNDLER_VERSION" \
|
||||
&& bundle config --global path "$GEM_HOME" \
|
||||
&& bundle config --global bin "$GEM_HOME/bin"
|
||||
&& bundle config --global bin "$GEM_HOME/bin" \
|
||||
&& bundle config --global silence_root_warning true
|
||||
|
||||
# don't create ".bundle" in all our apps
|
||||
ENV BUNDLE_APP_CONFIG $GEM_HOME
|
||||
|
|
|
@ -63,7 +63,8 @@ ENV BUNDLER_VERSION 1.11.2
|
|||
|
||||
RUN gem install bundler --version "$BUNDLER_VERSION" \
|
||||
&& bundle config --global path "$GEM_HOME" \
|
||||
&& bundle config --global bin "$GEM_HOME/bin"
|
||||
&& bundle config --global bin "$GEM_HOME/bin" \
|
||||
&& bundle config --global silence_root_warning true
|
||||
|
||||
# don't create ".bundle" in all our apps
|
||||
ENV BUNDLE_APP_CONFIG $GEM_HOME
|
||||
|
|
|
@ -35,7 +35,8 @@ ENV BUNDLER_VERSION 1.11.2
|
|||
|
||||
RUN gem install bundler --version "$BUNDLER_VERSION" \
|
||||
&& bundle config --global path "$GEM_HOME" \
|
||||
&& bundle config --global bin "$GEM_HOME/bin"
|
||||
&& bundle config --global bin "$GEM_HOME/bin" \
|
||||
&& bundle config --global silence_root_warning true
|
||||
|
||||
# don't create ".bundle" in all our apps
|
||||
ENV BUNDLE_APP_CONFIG $GEM_HOME
|
||||
|
|
|
@ -63,7 +63,8 @@ ENV BUNDLER_VERSION 1.11.2
|
|||
|
||||
RUN gem install bundler --version "$BUNDLER_VERSION" \
|
||||
&& bundle config --global path "$GEM_HOME" \
|
||||
&& bundle config --global bin "$GEM_HOME/bin"
|
||||
&& bundle config --global bin "$GEM_HOME/bin" \
|
||||
&& bundle config --global silence_root_warning true
|
||||
|
||||
# don't create ".bundle" in all our apps
|
||||
ENV BUNDLE_APP_CONFIG $GEM_HOME
|
||||
|
|
|
@ -35,7 +35,8 @@ ENV BUNDLER_VERSION 1.11.2
|
|||
|
||||
RUN gem install bundler --version "$BUNDLER_VERSION" \
|
||||
&& bundle config --global path "$GEM_HOME" \
|
||||
&& bundle config --global bin "$GEM_HOME/bin"
|
||||
&& bundle config --global bin "$GEM_HOME/bin" \
|
||||
&& bundle config --global silence_root_warning true
|
||||
|
||||
# don't create ".bundle" in all our apps
|
||||
ENV BUNDLE_APP_CONFIG $GEM_HOME
|
||||
|
|
|
@ -63,7 +63,8 @@ ENV BUNDLER_VERSION 1.11.2
|
|||
|
||||
RUN gem install bundler --version "$BUNDLER_VERSION" \
|
||||
&& bundle config --global path "$GEM_HOME" \
|
||||
&& bundle config --global bin "$GEM_HOME/bin"
|
||||
&& bundle config --global bin "$GEM_HOME/bin" \
|
||||
&& bundle config --global silence_root_warning true
|
||||
|
||||
# don't create ".bundle" in all our apps
|
||||
ENV BUNDLE_APP_CONFIG $GEM_HOME
|
||||
|
|
|
@ -35,7 +35,8 @@ ENV BUNDLER_VERSION 1.11.2
|
|||
|
||||
RUN gem install bundler --version "$BUNDLER_VERSION" \
|
||||
&& bundle config --global path "$GEM_HOME" \
|
||||
&& bundle config --global bin "$GEM_HOME/bin"
|
||||
&& bundle config --global bin "$GEM_HOME/bin" \
|
||||
&& bundle config --global silence_root_warning true
|
||||
|
||||
# don't create ".bundle" in all our apps
|
||||
ENV BUNDLE_APP_CONFIG $GEM_HOME
|
||||
|
|
|
@ -63,7 +63,8 @@ ENV BUNDLER_VERSION 1.11.2
|
|||
|
||||
RUN gem install bundler --version "$BUNDLER_VERSION" \
|
||||
&& bundle config --global path "$GEM_HOME" \
|
||||
&& bundle config --global bin "$GEM_HOME/bin"
|
||||
&& bundle config --global bin "$GEM_HOME/bin" \
|
||||
&& bundle config --global silence_root_warning true
|
||||
|
||||
# don't create ".bundle" in all our apps
|
||||
ENV BUNDLE_APP_CONFIG $GEM_HOME
|
||||
|
|
Loading…
Reference in a new issue