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

Alternative fix

Stop setting `BUNDLE_PATH`.

All default bundler versions shipped with all supported rubies install
gems to `GEM_HOME` by default, so this shouldn't be a breaking change
and it's a less surprising behavior because it does not deviate from how
bundler is configured by default.

Future versions will probably install locally by default, but that
hasn't happened yet.

I think leaving bundler "unconfigured" also matches the direction of the
recent change where the images no longer explicitly install `bundler` but
simply leave whatever version comes with ruby. Similarly, it makes sense
to me to leave whatever configuration comes by default with `bundler` in
place.
This commit is contained in:
David Rodríguez 2020-01-03 16:49:48 +01:00
parent 7df74adde3
commit 82eecb7596
No known key found for this signature in database
GPG key ID: 1008A258BB37309C
25 changed files with 75 additions and 175 deletions

View file

@ -121,16 +121,12 @@ RUN set -eux; \
gem --version; \ gem --version; \
bundle --version bundle --version
# install things globally, for great justice # don't create ".bundle" in all our apps
# and don't create ".bundle" in all our apps
ENV GEM_HOME /usr/local/bundle ENV GEM_HOME /usr/local/bundle
ENV GEM_PATH $GEM_HOME/ruby/$RUBY_MAJOR.0:$GEM_PATH ENV BUNDLE_SILENCE_ROOT_WARNING=1 \
ENV BUNDLE_PATH="$GEM_HOME" \
BUNDLE_SILENCE_ROOT_WARNING=1 \
BUNDLE_APP_CONFIG="$GEM_HOME" BUNDLE_APP_CONFIG="$GEM_HOME"
ENV PATH $GEM_HOME/bin:$GEM_HOME/ruby/$RUBY_MAJOR.0/bin:$PATH ENV PATH $GEM_HOME/bin:$PATH
# adjust permissions of a few directories for running "gem install" as an arbitrary user # adjust permissions of a few directories for running "gem install" as an arbitrary user
RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME" RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME"
# (BUNDLE_PATH = GEM_HOME, no need to mkdir/chown both)
CMD [ "irb" ] CMD [ "irb" ]

View file

@ -121,16 +121,12 @@ RUN set -eux; \
gem --version; \ gem --version; \
bundle --version bundle --version
# install things globally, for great justice # don't create ".bundle" in all our apps
# and don't create ".bundle" in all our apps
ENV GEM_HOME /usr/local/bundle ENV GEM_HOME /usr/local/bundle
ENV GEM_PATH $GEM_HOME/ruby/$RUBY_MAJOR.0:$GEM_PATH ENV BUNDLE_SILENCE_ROOT_WARNING=1 \
ENV BUNDLE_PATH="$GEM_HOME" \
BUNDLE_SILENCE_ROOT_WARNING=1 \
BUNDLE_APP_CONFIG="$GEM_HOME" BUNDLE_APP_CONFIG="$GEM_HOME"
ENV PATH $GEM_HOME/bin:$GEM_HOME/ruby/$RUBY_MAJOR.0/bin:$PATH ENV PATH $GEM_HOME/bin:$PATH
# adjust permissions of a few directories for running "gem install" as an arbitrary user # adjust permissions of a few directories for running "gem install" as an arbitrary user
RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME" RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME"
# (BUNDLE_PATH = GEM_HOME, no need to mkdir/chown both)
CMD [ "irb" ] CMD [ "irb" ]

View file

@ -80,16 +80,12 @@ RUN set -eux; \
gem --version; \ gem --version; \
bundle --version bundle --version
# install things globally, for great justice # don't create ".bundle" in all our apps
# and don't create ".bundle" in all our apps
ENV GEM_HOME /usr/local/bundle ENV GEM_HOME /usr/local/bundle
ENV GEM_PATH $GEM_HOME/ruby/$RUBY_MAJOR.0:$GEM_PATH ENV BUNDLE_SILENCE_ROOT_WARNING=1 \
ENV BUNDLE_PATH="$GEM_HOME" \
BUNDLE_SILENCE_ROOT_WARNING=1 \
BUNDLE_APP_CONFIG="$GEM_HOME" BUNDLE_APP_CONFIG="$GEM_HOME"
ENV PATH $GEM_HOME/bin:$GEM_HOME/ruby/$RUBY_MAJOR.0/bin:$PATH ENV PATH $GEM_HOME/bin:$PATH
# adjust permissions of a few directories for running "gem install" as an arbitrary user # adjust permissions of a few directories for running "gem install" as an arbitrary user
RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME" RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME"
# (BUNDLE_PATH = GEM_HOME, no need to mkdir/chown both)
CMD [ "irb" ] CMD [ "irb" ]

View file

@ -106,16 +106,12 @@ RUN set -eux; \
gem --version; \ gem --version; \
bundle --version bundle --version
# install things globally, for great justice # don't create ".bundle" in all our apps
# and don't create ".bundle" in all our apps
ENV GEM_HOME /usr/local/bundle ENV GEM_HOME /usr/local/bundle
ENV GEM_PATH $GEM_HOME/ruby/$RUBY_MAJOR.0:$GEM_PATH ENV BUNDLE_SILENCE_ROOT_WARNING=1 \
ENV BUNDLE_PATH="$GEM_HOME" \
BUNDLE_SILENCE_ROOT_WARNING=1 \
BUNDLE_APP_CONFIG="$GEM_HOME" BUNDLE_APP_CONFIG="$GEM_HOME"
ENV PATH $GEM_HOME/bin:$GEM_HOME/ruby/$RUBY_MAJOR.0/bin:$PATH ENV PATH $GEM_HOME/bin:$PATH
# adjust permissions of a few directories for running "gem install" as an arbitrary user # adjust permissions of a few directories for running "gem install" as an arbitrary user
RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME" RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME"
# (BUNDLE_PATH = GEM_HOME, no need to mkdir/chown both)
CMD [ "irb" ] CMD [ "irb" ]

View file

@ -80,16 +80,12 @@ RUN set -eux; \
gem --version; \ gem --version; \
bundle --version bundle --version
# install things globally, for great justice # don't create ".bundle" in all our apps
# and don't create ".bundle" in all our apps
ENV GEM_HOME /usr/local/bundle ENV GEM_HOME /usr/local/bundle
ENV GEM_PATH $GEM_HOME/ruby/$RUBY_MAJOR.0:$GEM_PATH ENV BUNDLE_SILENCE_ROOT_WARNING=1 \
ENV BUNDLE_PATH="$GEM_HOME" \
BUNDLE_SILENCE_ROOT_WARNING=1 \
BUNDLE_APP_CONFIG="$GEM_HOME" BUNDLE_APP_CONFIG="$GEM_HOME"
ENV PATH $GEM_HOME/bin:$GEM_HOME/ruby/$RUBY_MAJOR.0/bin:$PATH ENV PATH $GEM_HOME/bin:$PATH
# adjust permissions of a few directories for running "gem install" as an arbitrary user # adjust permissions of a few directories for running "gem install" as an arbitrary user
RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME" RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME"
# (BUNDLE_PATH = GEM_HOME, no need to mkdir/chown both)
CMD [ "irb" ] CMD [ "irb" ]

View file

@ -105,16 +105,12 @@ RUN set -eux; \
gem --version; \ gem --version; \
bundle --version bundle --version
# install things globally, for great justice # don't create ".bundle" in all our apps
# and don't create ".bundle" in all our apps
ENV GEM_HOME /usr/local/bundle ENV GEM_HOME /usr/local/bundle
ENV GEM_PATH $GEM_HOME/ruby/$RUBY_MAJOR.0:$GEM_PATH ENV BUNDLE_SILENCE_ROOT_WARNING=1 \
ENV BUNDLE_PATH="$GEM_HOME" \
BUNDLE_SILENCE_ROOT_WARNING=1 \
BUNDLE_APP_CONFIG="$GEM_HOME" BUNDLE_APP_CONFIG="$GEM_HOME"
ENV PATH $GEM_HOME/bin:$GEM_HOME/ruby/$RUBY_MAJOR.0/bin:$PATH ENV PATH $GEM_HOME/bin:$PATH
# adjust permissions of a few directories for running "gem install" as an arbitrary user # adjust permissions of a few directories for running "gem install" as an arbitrary user
RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME" RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME"
# (BUNDLE_PATH = GEM_HOME, no need to mkdir/chown both)
CMD [ "irb" ] CMD [ "irb" ]

View file

@ -121,16 +121,12 @@ RUN set -eux; \
gem --version; \ gem --version; \
bundle --version bundle --version
# install things globally, for great justice # don't create ".bundle" in all our apps
# and don't create ".bundle" in all our apps
ENV GEM_HOME /usr/local/bundle ENV GEM_HOME /usr/local/bundle
ENV GEM_PATH $GEM_HOME/ruby/$RUBY_MAJOR.0:$GEM_PATH ENV BUNDLE_SILENCE_ROOT_WARNING=1 \
ENV BUNDLE_PATH="$GEM_HOME" \
BUNDLE_SILENCE_ROOT_WARNING=1 \
BUNDLE_APP_CONFIG="$GEM_HOME" BUNDLE_APP_CONFIG="$GEM_HOME"
ENV PATH $GEM_HOME/bin:$GEM_HOME/ruby/$RUBY_MAJOR.0/bin:$PATH ENV PATH $GEM_HOME/bin:$PATH
# adjust permissions of a few directories for running "gem install" as an arbitrary user # adjust permissions of a few directories for running "gem install" as an arbitrary user
RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME" RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME"
# (BUNDLE_PATH = GEM_HOME, no need to mkdir/chown both)
CMD [ "irb" ] CMD [ "irb" ]

View file

@ -121,16 +121,12 @@ RUN set -eux; \
gem --version; \ gem --version; \
bundle --version bundle --version
# install things globally, for great justice # don't create ".bundle" in all our apps
# and don't create ".bundle" in all our apps
ENV GEM_HOME /usr/local/bundle ENV GEM_HOME /usr/local/bundle
ENV GEM_PATH $GEM_HOME/ruby/$RUBY_MAJOR.0:$GEM_PATH ENV BUNDLE_SILENCE_ROOT_WARNING=1 \
ENV BUNDLE_PATH="$GEM_HOME" \
BUNDLE_SILENCE_ROOT_WARNING=1 \
BUNDLE_APP_CONFIG="$GEM_HOME" BUNDLE_APP_CONFIG="$GEM_HOME"
ENV PATH $GEM_HOME/bin:$GEM_HOME/ruby/$RUBY_MAJOR.0/bin:$PATH ENV PATH $GEM_HOME/bin:$PATH
# adjust permissions of a few directories for running "gem install" as an arbitrary user # adjust permissions of a few directories for running "gem install" as an arbitrary user
RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME" RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME"
# (BUNDLE_PATH = GEM_HOME, no need to mkdir/chown both)
CMD [ "irb" ] CMD [ "irb" ]

View file

@ -80,16 +80,12 @@ RUN set -eux; \
gem --version; \ gem --version; \
bundle --version bundle --version
# install things globally, for great justice # don't create ".bundle" in all our apps
# and don't create ".bundle" in all our apps
ENV GEM_HOME /usr/local/bundle ENV GEM_HOME /usr/local/bundle
ENV GEM_PATH $GEM_HOME/ruby/$RUBY_MAJOR.0:$GEM_PATH ENV BUNDLE_SILENCE_ROOT_WARNING=1 \
ENV BUNDLE_PATH="$GEM_HOME" \
BUNDLE_SILENCE_ROOT_WARNING=1 \
BUNDLE_APP_CONFIG="$GEM_HOME" BUNDLE_APP_CONFIG="$GEM_HOME"
ENV PATH $GEM_HOME/bin:$GEM_HOME/ruby/$RUBY_MAJOR.0/bin:$PATH ENV PATH $GEM_HOME/bin:$PATH
# adjust permissions of a few directories for running "gem install" as an arbitrary user # adjust permissions of a few directories for running "gem install" as an arbitrary user
RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME" RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME"
# (BUNDLE_PATH = GEM_HOME, no need to mkdir/chown both)
CMD [ "irb" ] CMD [ "irb" ]

View file

@ -106,16 +106,12 @@ RUN set -eux; \
gem --version; \ gem --version; \
bundle --version bundle --version
# install things globally, for great justice # don't create ".bundle" in all our apps
# and don't create ".bundle" in all our apps
ENV GEM_HOME /usr/local/bundle ENV GEM_HOME /usr/local/bundle
ENV GEM_PATH $GEM_HOME/ruby/$RUBY_MAJOR.0:$GEM_PATH ENV BUNDLE_SILENCE_ROOT_WARNING=1 \
ENV BUNDLE_PATH="$GEM_HOME" \
BUNDLE_SILENCE_ROOT_WARNING=1 \
BUNDLE_APP_CONFIG="$GEM_HOME" BUNDLE_APP_CONFIG="$GEM_HOME"
ENV PATH $GEM_HOME/bin:$GEM_HOME/ruby/$RUBY_MAJOR.0/bin:$PATH ENV PATH $GEM_HOME/bin:$PATH
# adjust permissions of a few directories for running "gem install" as an arbitrary user # adjust permissions of a few directories for running "gem install" as an arbitrary user
RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME" RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME"
# (BUNDLE_PATH = GEM_HOME, no need to mkdir/chown both)
CMD [ "irb" ] CMD [ "irb" ]

View file

@ -80,16 +80,12 @@ RUN set -eux; \
gem --version; \ gem --version; \
bundle --version bundle --version
# install things globally, for great justice # don't create ".bundle" in all our apps
# and don't create ".bundle" in all our apps
ENV GEM_HOME /usr/local/bundle ENV GEM_HOME /usr/local/bundle
ENV GEM_PATH $GEM_HOME/ruby/$RUBY_MAJOR.0:$GEM_PATH ENV BUNDLE_SILENCE_ROOT_WARNING=1 \
ENV BUNDLE_PATH="$GEM_HOME" \
BUNDLE_SILENCE_ROOT_WARNING=1 \
BUNDLE_APP_CONFIG="$GEM_HOME" BUNDLE_APP_CONFIG="$GEM_HOME"
ENV PATH $GEM_HOME/bin:$GEM_HOME/ruby/$RUBY_MAJOR.0/bin:$PATH ENV PATH $GEM_HOME/bin:$PATH
# adjust permissions of a few directories for running "gem install" as an arbitrary user # adjust permissions of a few directories for running "gem install" as an arbitrary user
RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME" RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME"
# (BUNDLE_PATH = GEM_HOME, no need to mkdir/chown both)
CMD [ "irb" ] CMD [ "irb" ]

View file

@ -105,16 +105,12 @@ RUN set -eux; \
gem --version; \ gem --version; \
bundle --version bundle --version
# install things globally, for great justice # don't create ".bundle" in all our apps
# and don't create ".bundle" in all our apps
ENV GEM_HOME /usr/local/bundle ENV GEM_HOME /usr/local/bundle
ENV GEM_PATH $GEM_HOME/ruby/$RUBY_MAJOR.0:$GEM_PATH ENV BUNDLE_SILENCE_ROOT_WARNING=1 \
ENV BUNDLE_PATH="$GEM_HOME" \
BUNDLE_SILENCE_ROOT_WARNING=1 \
BUNDLE_APP_CONFIG="$GEM_HOME" BUNDLE_APP_CONFIG="$GEM_HOME"
ENV PATH $GEM_HOME/bin:$GEM_HOME/ruby/$RUBY_MAJOR.0/bin:$PATH ENV PATH $GEM_HOME/bin:$PATH
# adjust permissions of a few directories for running "gem install" as an arbitrary user # adjust permissions of a few directories for running "gem install" as an arbitrary user
RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME" RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME"
# (BUNDLE_PATH = GEM_HOME, no need to mkdir/chown both)
CMD [ "irb" ] CMD [ "irb" ]

View file

@ -117,16 +117,12 @@ RUN set -eux; \
gem --version; \ gem --version; \
bundle --version bundle --version
# install things globally, for great justice # don't create ".bundle" in all our apps
# and don't create ".bundle" in all our apps
ENV GEM_HOME /usr/local/bundle ENV GEM_HOME /usr/local/bundle
ENV GEM_PATH $GEM_HOME/ruby/$RUBY_MAJOR.0:$GEM_PATH ENV BUNDLE_SILENCE_ROOT_WARNING=1 \
ENV BUNDLE_PATH="$GEM_HOME" \
BUNDLE_SILENCE_ROOT_WARNING=1 \
BUNDLE_APP_CONFIG="$GEM_HOME" BUNDLE_APP_CONFIG="$GEM_HOME"
ENV PATH $GEM_HOME/bin:$GEM_HOME/ruby/$RUBY_MAJOR.0/bin:$PATH ENV PATH $GEM_HOME/bin:$PATH
# adjust permissions of a few directories for running "gem install" as an arbitrary user # adjust permissions of a few directories for running "gem install" as an arbitrary user
RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME" RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME"
# (BUNDLE_PATH = GEM_HOME, no need to mkdir/chown both)
CMD [ "irb" ] CMD [ "irb" ]

View file

@ -117,16 +117,12 @@ RUN set -eux; \
gem --version; \ gem --version; \
bundle --version bundle --version
# install things globally, for great justice # don't create ".bundle" in all our apps
# and don't create ".bundle" in all our apps
ENV GEM_HOME /usr/local/bundle ENV GEM_HOME /usr/local/bundle
ENV GEM_PATH $GEM_HOME/ruby/$RUBY_MAJOR.0:$GEM_PATH ENV BUNDLE_SILENCE_ROOT_WARNING=1 \
ENV BUNDLE_PATH="$GEM_HOME" \
BUNDLE_SILENCE_ROOT_WARNING=1 \
BUNDLE_APP_CONFIG="$GEM_HOME" BUNDLE_APP_CONFIG="$GEM_HOME"
ENV PATH $GEM_HOME/bin:$GEM_HOME/ruby/$RUBY_MAJOR.0/bin:$PATH ENV PATH $GEM_HOME/bin:$PATH
# adjust permissions of a few directories for running "gem install" as an arbitrary user # adjust permissions of a few directories for running "gem install" as an arbitrary user
RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME" RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME"
# (BUNDLE_PATH = GEM_HOME, no need to mkdir/chown both)
CMD [ "irb" ] CMD [ "irb" ]

View file

@ -76,16 +76,12 @@ RUN set -eux; \
gem --version; \ gem --version; \
bundle --version bundle --version
# install things globally, for great justice # don't create ".bundle" in all our apps
# and don't create ".bundle" in all our apps
ENV GEM_HOME /usr/local/bundle ENV GEM_HOME /usr/local/bundle
ENV GEM_PATH $GEM_HOME/ruby/$RUBY_MAJOR.0:$GEM_PATH ENV BUNDLE_SILENCE_ROOT_WARNING=1 \
ENV BUNDLE_PATH="$GEM_HOME" \
BUNDLE_SILENCE_ROOT_WARNING=1 \
BUNDLE_APP_CONFIG="$GEM_HOME" BUNDLE_APP_CONFIG="$GEM_HOME"
ENV PATH $GEM_HOME/bin:$GEM_HOME/ruby/$RUBY_MAJOR.0/bin:$PATH ENV PATH $GEM_HOME/bin:$PATH
# adjust permissions of a few directories for running "gem install" as an arbitrary user # adjust permissions of a few directories for running "gem install" as an arbitrary user
RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME" RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME"
# (BUNDLE_PATH = GEM_HOME, no need to mkdir/chown both)
CMD [ "irb" ] CMD [ "irb" ]

View file

@ -102,16 +102,12 @@ RUN set -eux; \
gem --version; \ gem --version; \
bundle --version bundle --version
# install things globally, for great justice # don't create ".bundle" in all our apps
# and don't create ".bundle" in all our apps
ENV GEM_HOME /usr/local/bundle ENV GEM_HOME /usr/local/bundle
ENV GEM_PATH $GEM_HOME/ruby/$RUBY_MAJOR.0:$GEM_PATH ENV BUNDLE_SILENCE_ROOT_WARNING=1 \
ENV BUNDLE_PATH="$GEM_HOME" \
BUNDLE_SILENCE_ROOT_WARNING=1 \
BUNDLE_APP_CONFIG="$GEM_HOME" BUNDLE_APP_CONFIG="$GEM_HOME"
ENV PATH $GEM_HOME/bin:$GEM_HOME/ruby/$RUBY_MAJOR.0/bin:$PATH ENV PATH $GEM_HOME/bin:$PATH
# adjust permissions of a few directories for running "gem install" as an arbitrary user # adjust permissions of a few directories for running "gem install" as an arbitrary user
RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME" RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME"
# (BUNDLE_PATH = GEM_HOME, no need to mkdir/chown both)
CMD [ "irb" ] CMD [ "irb" ]

View file

@ -76,16 +76,12 @@ RUN set -eux; \
gem --version; \ gem --version; \
bundle --version bundle --version
# install things globally, for great justice # don't create ".bundle" in all our apps
# and don't create ".bundle" in all our apps
ENV GEM_HOME /usr/local/bundle ENV GEM_HOME /usr/local/bundle
ENV GEM_PATH $GEM_HOME/ruby/$RUBY_MAJOR.0:$GEM_PATH ENV BUNDLE_SILENCE_ROOT_WARNING=1 \
ENV BUNDLE_PATH="$GEM_HOME" \
BUNDLE_SILENCE_ROOT_WARNING=1 \
BUNDLE_APP_CONFIG="$GEM_HOME" BUNDLE_APP_CONFIG="$GEM_HOME"
ENV PATH $GEM_HOME/bin:$GEM_HOME/ruby/$RUBY_MAJOR.0/bin:$PATH ENV PATH $GEM_HOME/bin:$PATH
# adjust permissions of a few directories for running "gem install" as an arbitrary user # adjust permissions of a few directories for running "gem install" as an arbitrary user
RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME" RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME"
# (BUNDLE_PATH = GEM_HOME, no need to mkdir/chown both)
CMD [ "irb" ] CMD [ "irb" ]

View file

@ -101,16 +101,12 @@ RUN set -eux; \
gem --version; \ gem --version; \
bundle --version bundle --version
# install things globally, for great justice # don't create ".bundle" in all our apps
# and don't create ".bundle" in all our apps
ENV GEM_HOME /usr/local/bundle ENV GEM_HOME /usr/local/bundle
ENV GEM_PATH $GEM_HOME/ruby/$RUBY_MAJOR.0:$GEM_PATH ENV BUNDLE_SILENCE_ROOT_WARNING=1 \
ENV BUNDLE_PATH="$GEM_HOME" \
BUNDLE_SILENCE_ROOT_WARNING=1 \
BUNDLE_APP_CONFIG="$GEM_HOME" BUNDLE_APP_CONFIG="$GEM_HOME"
ENV PATH $GEM_HOME/bin:$GEM_HOME/ruby/$RUBY_MAJOR.0/bin:$PATH ENV PATH $GEM_HOME/bin:$PATH
# adjust permissions of a few directories for running "gem install" as an arbitrary user # adjust permissions of a few directories for running "gem install" as an arbitrary user
RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME" RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME"
# (BUNDLE_PATH = GEM_HOME, no need to mkdir/chown both)
CMD [ "irb" ] CMD [ "irb" ]

View file

@ -117,16 +117,12 @@ RUN set -eux; \
gem --version; \ gem --version; \
bundle --version bundle --version
# install things globally, for great justice # don't create ".bundle" in all our apps
# and don't create ".bundle" in all our apps
ENV GEM_HOME /usr/local/bundle ENV GEM_HOME /usr/local/bundle
ENV GEM_PATH $GEM_HOME/ruby/$RUBY_MAJOR.0:$GEM_PATH ENV BUNDLE_SILENCE_ROOT_WARNING=1 \
ENV BUNDLE_PATH="$GEM_HOME" \
BUNDLE_SILENCE_ROOT_WARNING=1 \
BUNDLE_APP_CONFIG="$GEM_HOME" BUNDLE_APP_CONFIG="$GEM_HOME"
ENV PATH $GEM_HOME/bin:$GEM_HOME/ruby/$RUBY_MAJOR.0/bin:$PATH ENV PATH $GEM_HOME/bin:$PATH
# adjust permissions of a few directories for running "gem install" as an arbitrary user # adjust permissions of a few directories for running "gem install" as an arbitrary user
RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME" RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME"
# (BUNDLE_PATH = GEM_HOME, no need to mkdir/chown both)
CMD [ "irb" ] CMD [ "irb" ]

View file

@ -117,16 +117,12 @@ RUN set -eux; \
gem --version; \ gem --version; \
bundle --version bundle --version
# install things globally, for great justice # don't create ".bundle" in all our apps
# and don't create ".bundle" in all our apps
ENV GEM_HOME /usr/local/bundle ENV GEM_HOME /usr/local/bundle
ENV GEM_PATH $GEM_HOME/ruby/$RUBY_MAJOR.0:$GEM_PATH ENV BUNDLE_SILENCE_ROOT_WARNING=1 \
ENV BUNDLE_PATH="$GEM_HOME" \
BUNDLE_SILENCE_ROOT_WARNING=1 \
BUNDLE_APP_CONFIG="$GEM_HOME" BUNDLE_APP_CONFIG="$GEM_HOME"
ENV PATH $GEM_HOME/bin:$GEM_HOME/ruby/$RUBY_MAJOR.0/bin:$PATH ENV PATH $GEM_HOME/bin:$PATH
# adjust permissions of a few directories for running "gem install" as an arbitrary user # adjust permissions of a few directories for running "gem install" as an arbitrary user
RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME" RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME"
# (BUNDLE_PATH = GEM_HOME, no need to mkdir/chown both)
CMD [ "irb" ] CMD [ "irb" ]

View file

@ -76,16 +76,12 @@ RUN set -eux; \
gem --version; \ gem --version; \
bundle --version bundle --version
# install things globally, for great justice # don't create ".bundle" in all our apps
# and don't create ".bundle" in all our apps
ENV GEM_HOME /usr/local/bundle ENV GEM_HOME /usr/local/bundle
ENV GEM_PATH $GEM_HOME/ruby/$RUBY_MAJOR.0:$GEM_PATH ENV BUNDLE_SILENCE_ROOT_WARNING=1 \
ENV BUNDLE_PATH="$GEM_HOME" \
BUNDLE_SILENCE_ROOT_WARNING=1 \
BUNDLE_APP_CONFIG="$GEM_HOME" BUNDLE_APP_CONFIG="$GEM_HOME"
ENV PATH $GEM_HOME/bin:$GEM_HOME/ruby/$RUBY_MAJOR.0/bin:$PATH ENV PATH $GEM_HOME/bin:$PATH
# adjust permissions of a few directories for running "gem install" as an arbitrary user # adjust permissions of a few directories for running "gem install" as an arbitrary user
RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME" RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME"
# (BUNDLE_PATH = GEM_HOME, no need to mkdir/chown both)
CMD [ "irb" ] CMD [ "irb" ]

View file

@ -102,16 +102,12 @@ RUN set -eux; \
gem --version; \ gem --version; \
bundle --version bundle --version
# install things globally, for great justice # don't create ".bundle" in all our apps
# and don't create ".bundle" in all our apps
ENV GEM_HOME /usr/local/bundle ENV GEM_HOME /usr/local/bundle
ENV GEM_PATH $GEM_HOME/ruby/$RUBY_MAJOR.0:$GEM_PATH ENV BUNDLE_SILENCE_ROOT_WARNING=1 \
ENV BUNDLE_PATH="$GEM_HOME" \
BUNDLE_SILENCE_ROOT_WARNING=1 \
BUNDLE_APP_CONFIG="$GEM_HOME" BUNDLE_APP_CONFIG="$GEM_HOME"
ENV PATH $GEM_HOME/bin:$GEM_HOME/ruby/$RUBY_MAJOR.0/bin:$PATH ENV PATH $GEM_HOME/bin:$PATH
# adjust permissions of a few directories for running "gem install" as an arbitrary user # adjust permissions of a few directories for running "gem install" as an arbitrary user
RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME" RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME"
# (BUNDLE_PATH = GEM_HOME, no need to mkdir/chown both)
CMD [ "irb" ] CMD [ "irb" ]

View file

@ -121,16 +121,12 @@ RUN set -eux; \
gem --version; \ gem --version; \
bundle --version bundle --version
# install things globally, for great justice # don't create ".bundle" in all our apps
# and don't create ".bundle" in all our apps
ENV GEM_HOME /usr/local/bundle ENV GEM_HOME /usr/local/bundle
ENV GEM_PATH $GEM_HOME/ruby/$RUBY_MAJOR.0:$GEM_PATH ENV BUNDLE_SILENCE_ROOT_WARNING=1 \
ENV BUNDLE_PATH="$GEM_HOME" \
BUNDLE_SILENCE_ROOT_WARNING=1 \
BUNDLE_APP_CONFIG="$GEM_HOME" BUNDLE_APP_CONFIG="$GEM_HOME"
ENV PATH $GEM_HOME/bin:$GEM_HOME/ruby/$RUBY_MAJOR.0/bin:$PATH ENV PATH $GEM_HOME/bin:$PATH
# adjust permissions of a few directories for running "gem install" as an arbitrary user # adjust permissions of a few directories for running "gem install" as an arbitrary user
RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME" RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME"
# (BUNDLE_PATH = GEM_HOME, no need to mkdir/chown both)
CMD [ "irb" ] CMD [ "irb" ]

View file

@ -80,16 +80,12 @@ RUN set -eux; \
gem --version; \ gem --version; \
bundle --version bundle --version
# install things globally, for great justice # don't create ".bundle" in all our apps
# and don't create ".bundle" in all our apps
ENV GEM_HOME /usr/local/bundle ENV GEM_HOME /usr/local/bundle
ENV GEM_PATH $GEM_HOME/ruby/$RUBY_MAJOR.0:$GEM_PATH ENV BUNDLE_SILENCE_ROOT_WARNING=1 \
ENV BUNDLE_PATH="$GEM_HOME" \
BUNDLE_SILENCE_ROOT_WARNING=1 \
BUNDLE_APP_CONFIG="$GEM_HOME" BUNDLE_APP_CONFIG="$GEM_HOME"
ENV PATH $GEM_HOME/bin:$GEM_HOME/ruby/$RUBY_MAJOR.0/bin:$PATH ENV PATH $GEM_HOME/bin:$PATH
# adjust permissions of a few directories for running "gem install" as an arbitrary user # adjust permissions of a few directories for running "gem install" as an arbitrary user
RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME" RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME"
# (BUNDLE_PATH = GEM_HOME, no need to mkdir/chown both)
CMD [ "irb" ] CMD [ "irb" ]

View file

@ -106,16 +106,12 @@ RUN set -eux; \
gem --version; \ gem --version; \
bundle --version bundle --version
# install things globally, for great justice # don't create ".bundle" in all our apps
# and don't create ".bundle" in all our apps
ENV GEM_HOME /usr/local/bundle ENV GEM_HOME /usr/local/bundle
ENV GEM_PATH $GEM_HOME/ruby/$RUBY_MAJOR.0:$GEM_PATH ENV BUNDLE_SILENCE_ROOT_WARNING=1 \
ENV BUNDLE_PATH="$GEM_HOME" \
BUNDLE_SILENCE_ROOT_WARNING=1 \
BUNDLE_APP_CONFIG="$GEM_HOME" BUNDLE_APP_CONFIG="$GEM_HOME"
ENV PATH $GEM_HOME/bin:$GEM_HOME/ruby/$RUBY_MAJOR.0/bin:$PATH ENV PATH $GEM_HOME/bin:$PATH
# adjust permissions of a few directories for running "gem install" as an arbitrary user # adjust permissions of a few directories for running "gem install" as an arbitrary user
RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME" RUN mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME"
# (BUNDLE_PATH = GEM_HOME, no need to mkdir/chown both)
CMD [ "irb" ] CMD [ "irb" ]