mirror of
https://github.com/docker-library/ruby.git
synced 2022-11-09 11:41:34 -05:00
Fix non-root support
This commit is contained in:
parent
d902c7db3d
commit
9b1f77c11d
14 changed files with 126 additions and 140 deletions
|
@ -40,18 +40,17 @@ RUN set -ex \
|
|||
|
||||
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 silence_root_warning true
|
||||
RUN gem install bundler --version "$BUNDLER_VERSION"
|
||||
|
||||
# install things globally, for great justice
|
||||
# and don't create ".bundle" in all our apps
|
||||
ENV GEM_HOME /usr/local/bundle
|
||||
ENV PATH $GEM_HOME/bin:$PATH
|
||||
RUN mkdir -p "$GEM_HOME" \
|
||||
&& chmod 777 "$GEM_HOME"
|
||||
|
||||
# don't create ".bundle" in all our apps
|
||||
ENV BUNDLE_APP_CONFIG $GEM_HOME
|
||||
ENV BUNDLE_PATH="$GEM_HOME" \
|
||||
BUNDLE_BIN="$GEM_HOME/bin" \
|
||||
BUNDLE_SILENCE_ROOT_WARNING=1 \
|
||||
BUNDLE_APP_CONFIG="$GEM_HOME"
|
||||
ENV PATH $BUNDLE_BIN:$PATH
|
||||
RUN mkdir -p "$GEM_HOME" "$BUNDLE_BIN" \
|
||||
&& chmod 777 "$GEM_HOME" "$BUNDLE_BIN"
|
||||
|
||||
CMD [ "irb" ]
|
||||
|
|
|
@ -62,18 +62,17 @@ RUN set -ex \
|
|||
|
||||
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 silence_root_warning true
|
||||
RUN gem install bundler --version "$BUNDLER_VERSION"
|
||||
|
||||
# install things globally, for great justice
|
||||
# and don't create ".bundle" in all our apps
|
||||
ENV GEM_HOME /usr/local/bundle
|
||||
ENV PATH $GEM_HOME/bin:$PATH
|
||||
RUN mkdir -p "$GEM_HOME" \
|
||||
&& chmod 777 "$GEM_HOME"
|
||||
|
||||
# don't create ".bundle" in all our apps
|
||||
ENV BUNDLE_APP_CONFIG $GEM_HOME
|
||||
ENV BUNDLE_PATH="$GEM_HOME" \
|
||||
BUNDLE_BIN="$GEM_HOME/bin" \
|
||||
BUNDLE_SILENCE_ROOT_WARNING=1 \
|
||||
BUNDLE_APP_CONFIG="$GEM_HOME"
|
||||
ENV PATH $BUNDLE_BIN:$PATH
|
||||
RUN mkdir -p "$GEM_HOME" "$BUNDLE_BIN" \
|
||||
&& chmod 777 "$GEM_HOME" "$BUNDLE_BIN"
|
||||
|
||||
CMD [ "irb" ]
|
||||
|
|
|
@ -40,18 +40,17 @@ RUN set -ex \
|
|||
|
||||
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 silence_root_warning true
|
||||
RUN gem install bundler --version "$BUNDLER_VERSION"
|
||||
|
||||
# install things globally, for great justice
|
||||
# and don't create ".bundle" in all our apps
|
||||
ENV GEM_HOME /usr/local/bundle
|
||||
ENV PATH $GEM_HOME/bin:$PATH
|
||||
RUN mkdir -p "$GEM_HOME" \
|
||||
&& chmod 777 "$GEM_HOME"
|
||||
|
||||
# don't create ".bundle" in all our apps
|
||||
ENV BUNDLE_APP_CONFIG $GEM_HOME
|
||||
ENV BUNDLE_PATH="$GEM_HOME" \
|
||||
BUNDLE_BIN="$GEM_HOME/bin" \
|
||||
BUNDLE_SILENCE_ROOT_WARNING=1 \
|
||||
BUNDLE_APP_CONFIG="$GEM_HOME"
|
||||
ENV PATH $BUNDLE_BIN:$PATH
|
||||
RUN mkdir -p "$GEM_HOME" "$BUNDLE_BIN" \
|
||||
&& chmod 777 "$GEM_HOME" "$BUNDLE_BIN"
|
||||
|
||||
CMD [ "irb" ]
|
||||
|
|
|
@ -75,18 +75,17 @@ RUN set -ex \
|
|||
|
||||
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 silence_root_warning true
|
||||
RUN gem install bundler --version "$BUNDLER_VERSION"
|
||||
|
||||
# install things globally, for great justice
|
||||
# and don't create ".bundle" in all our apps
|
||||
ENV GEM_HOME /usr/local/bundle
|
||||
ENV PATH $GEM_HOME/bin:$PATH
|
||||
RUN mkdir -p "$GEM_HOME" \
|
||||
&& chmod 777 "$GEM_HOME"
|
||||
|
||||
# don't create ".bundle" in all our apps
|
||||
ENV BUNDLE_APP_CONFIG $GEM_HOME
|
||||
ENV BUNDLE_PATH="$GEM_HOME" \
|
||||
BUNDLE_BIN="$GEM_HOME/bin" \
|
||||
BUNDLE_SILENCE_ROOT_WARNING=1 \
|
||||
BUNDLE_APP_CONFIG="$GEM_HOME"
|
||||
ENV PATH $BUNDLE_BIN:$PATH
|
||||
RUN mkdir -p "$GEM_HOME" "$BUNDLE_BIN" \
|
||||
&& chmod 777 "$GEM_HOME" "$BUNDLE_BIN"
|
||||
|
||||
CMD [ "irb" ]
|
||||
|
|
|
@ -62,18 +62,17 @@ RUN set -ex \
|
|||
|
||||
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 silence_root_warning true
|
||||
RUN gem install bundler --version "$BUNDLER_VERSION"
|
||||
|
||||
# install things globally, for great justice
|
||||
# and don't create ".bundle" in all our apps
|
||||
ENV GEM_HOME /usr/local/bundle
|
||||
ENV PATH $GEM_HOME/bin:$PATH
|
||||
RUN mkdir -p "$GEM_HOME" \
|
||||
&& chmod 777 "$GEM_HOME"
|
||||
|
||||
# don't create ".bundle" in all our apps
|
||||
ENV BUNDLE_APP_CONFIG $GEM_HOME
|
||||
ENV BUNDLE_PATH="$GEM_HOME" \
|
||||
BUNDLE_BIN="$GEM_HOME/bin" \
|
||||
BUNDLE_SILENCE_ROOT_WARNING=1 \
|
||||
BUNDLE_APP_CONFIG="$GEM_HOME"
|
||||
ENV PATH $BUNDLE_BIN:$PATH
|
||||
RUN mkdir -p "$GEM_HOME" "$BUNDLE_BIN" \
|
||||
&& chmod 777 "$GEM_HOME" "$BUNDLE_BIN"
|
||||
|
||||
CMD [ "irb" ]
|
||||
|
|
|
@ -40,18 +40,17 @@ RUN set -ex \
|
|||
|
||||
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 silence_root_warning true
|
||||
RUN gem install bundler --version "$BUNDLER_VERSION"
|
||||
|
||||
# install things globally, for great justice
|
||||
# and don't create ".bundle" in all our apps
|
||||
ENV GEM_HOME /usr/local/bundle
|
||||
ENV PATH $GEM_HOME/bin:$PATH
|
||||
RUN mkdir -p "$GEM_HOME" \
|
||||
&& chmod 777 "$GEM_HOME"
|
||||
|
||||
# don't create ".bundle" in all our apps
|
||||
ENV BUNDLE_APP_CONFIG $GEM_HOME
|
||||
ENV BUNDLE_PATH="$GEM_HOME" \
|
||||
BUNDLE_BIN="$GEM_HOME/bin" \
|
||||
BUNDLE_SILENCE_ROOT_WARNING=1 \
|
||||
BUNDLE_APP_CONFIG="$GEM_HOME"
|
||||
ENV PATH $BUNDLE_BIN:$PATH
|
||||
RUN mkdir -p "$GEM_HOME" "$BUNDLE_BIN" \
|
||||
&& chmod 777 "$GEM_HOME" "$BUNDLE_BIN"
|
||||
|
||||
CMD [ "irb" ]
|
||||
|
|
|
@ -75,18 +75,17 @@ RUN set -ex \
|
|||
|
||||
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 silence_root_warning true
|
||||
RUN gem install bundler --version "$BUNDLER_VERSION"
|
||||
|
||||
# install things globally, for great justice
|
||||
# and don't create ".bundle" in all our apps
|
||||
ENV GEM_HOME /usr/local/bundle
|
||||
ENV PATH $GEM_HOME/bin:$PATH
|
||||
RUN mkdir -p "$GEM_HOME" \
|
||||
&& chmod 777 "$GEM_HOME"
|
||||
|
||||
# don't create ".bundle" in all our apps
|
||||
ENV BUNDLE_APP_CONFIG $GEM_HOME
|
||||
ENV BUNDLE_PATH="$GEM_HOME" \
|
||||
BUNDLE_BIN="$GEM_HOME/bin" \
|
||||
BUNDLE_SILENCE_ROOT_WARNING=1 \
|
||||
BUNDLE_APP_CONFIG="$GEM_HOME"
|
||||
ENV PATH $BUNDLE_BIN:$PATH
|
||||
RUN mkdir -p "$GEM_HOME" "$BUNDLE_BIN" \
|
||||
&& chmod 777 "$GEM_HOME" "$BUNDLE_BIN"
|
||||
|
||||
CMD [ "irb" ]
|
||||
|
|
|
@ -62,18 +62,17 @@ RUN set -ex \
|
|||
|
||||
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 silence_root_warning true
|
||||
RUN gem install bundler --version "$BUNDLER_VERSION"
|
||||
|
||||
# install things globally, for great justice
|
||||
# and don't create ".bundle" in all our apps
|
||||
ENV GEM_HOME /usr/local/bundle
|
||||
ENV PATH $GEM_HOME/bin:$PATH
|
||||
RUN mkdir -p "$GEM_HOME" \
|
||||
&& chmod 777 "$GEM_HOME"
|
||||
|
||||
# don't create ".bundle" in all our apps
|
||||
ENV BUNDLE_APP_CONFIG $GEM_HOME
|
||||
ENV BUNDLE_PATH="$GEM_HOME" \
|
||||
BUNDLE_BIN="$GEM_HOME/bin" \
|
||||
BUNDLE_SILENCE_ROOT_WARNING=1 \
|
||||
BUNDLE_APP_CONFIG="$GEM_HOME"
|
||||
ENV PATH $BUNDLE_BIN:$PATH
|
||||
RUN mkdir -p "$GEM_HOME" "$BUNDLE_BIN" \
|
||||
&& chmod 777 "$GEM_HOME" "$BUNDLE_BIN"
|
||||
|
||||
CMD [ "irb" ]
|
||||
|
|
|
@ -40,18 +40,17 @@ RUN set -ex \
|
|||
|
||||
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 silence_root_warning true
|
||||
RUN gem install bundler --version "$BUNDLER_VERSION"
|
||||
|
||||
# install things globally, for great justice
|
||||
# and don't create ".bundle" in all our apps
|
||||
ENV GEM_HOME /usr/local/bundle
|
||||
ENV PATH $GEM_HOME/bin:$PATH
|
||||
RUN mkdir -p "$GEM_HOME" \
|
||||
&& chmod 777 "$GEM_HOME"
|
||||
|
||||
# don't create ".bundle" in all our apps
|
||||
ENV BUNDLE_APP_CONFIG $GEM_HOME
|
||||
ENV BUNDLE_PATH="$GEM_HOME" \
|
||||
BUNDLE_BIN="$GEM_HOME/bin" \
|
||||
BUNDLE_SILENCE_ROOT_WARNING=1 \
|
||||
BUNDLE_APP_CONFIG="$GEM_HOME"
|
||||
ENV PATH $BUNDLE_BIN:$PATH
|
||||
RUN mkdir -p "$GEM_HOME" "$BUNDLE_BIN" \
|
||||
&& chmod 777 "$GEM_HOME" "$BUNDLE_BIN"
|
||||
|
||||
CMD [ "irb" ]
|
||||
|
|
|
@ -75,18 +75,17 @@ RUN set -ex \
|
|||
|
||||
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 silence_root_warning true
|
||||
RUN gem install bundler --version "$BUNDLER_VERSION"
|
||||
|
||||
# install things globally, for great justice
|
||||
# and don't create ".bundle" in all our apps
|
||||
ENV GEM_HOME /usr/local/bundle
|
||||
ENV PATH $GEM_HOME/bin:$PATH
|
||||
RUN mkdir -p "$GEM_HOME" \
|
||||
&& chmod 777 "$GEM_HOME"
|
||||
|
||||
# don't create ".bundle" in all our apps
|
||||
ENV BUNDLE_APP_CONFIG $GEM_HOME
|
||||
ENV BUNDLE_PATH="$GEM_HOME" \
|
||||
BUNDLE_BIN="$GEM_HOME/bin" \
|
||||
BUNDLE_SILENCE_ROOT_WARNING=1 \
|
||||
BUNDLE_APP_CONFIG="$GEM_HOME"
|
||||
ENV PATH $BUNDLE_BIN:$PATH
|
||||
RUN mkdir -p "$GEM_HOME" "$BUNDLE_BIN" \
|
||||
&& chmod 777 "$GEM_HOME" "$BUNDLE_BIN"
|
||||
|
||||
CMD [ "irb" ]
|
||||
|
|
|
@ -62,18 +62,17 @@ RUN set -ex \
|
|||
|
||||
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 silence_root_warning true
|
||||
RUN gem install bundler --version "$BUNDLER_VERSION"
|
||||
|
||||
# install things globally, for great justice
|
||||
# and don't create ".bundle" in all our apps
|
||||
ENV GEM_HOME /usr/local/bundle
|
||||
ENV PATH $GEM_HOME/bin:$PATH
|
||||
RUN mkdir -p "$GEM_HOME" \
|
||||
&& chmod 777 "$GEM_HOME"
|
||||
|
||||
# don't create ".bundle" in all our apps
|
||||
ENV BUNDLE_APP_CONFIG $GEM_HOME
|
||||
ENV BUNDLE_PATH="$GEM_HOME" \
|
||||
BUNDLE_BIN="$GEM_HOME/bin" \
|
||||
BUNDLE_SILENCE_ROOT_WARNING=1 \
|
||||
BUNDLE_APP_CONFIG="$GEM_HOME"
|
||||
ENV PATH $BUNDLE_BIN:$PATH
|
||||
RUN mkdir -p "$GEM_HOME" "$BUNDLE_BIN" \
|
||||
&& chmod 777 "$GEM_HOME" "$BUNDLE_BIN"
|
||||
|
||||
CMD [ "irb" ]
|
||||
|
|
|
@ -75,18 +75,17 @@ RUN set -ex \
|
|||
|
||||
ENV BUNDLER_VERSION %%BUNDLER%%
|
||||
|
||||
RUN gem install bundler --version "$BUNDLER_VERSION" \
|
||||
&& bundle config --global path "$GEM_HOME" \
|
||||
&& bundle config --global bin "$GEM_HOME/bin" \
|
||||
&& bundle config --global silence_root_warning true
|
||||
RUN gem install bundler --version "$BUNDLER_VERSION"
|
||||
|
||||
# install things globally, for great justice
|
||||
# and don't create ".bundle" in all our apps
|
||||
ENV GEM_HOME /usr/local/bundle
|
||||
ENV PATH $GEM_HOME/bin:$PATH
|
||||
RUN mkdir -p "$GEM_HOME" \
|
||||
&& chmod 777 "$GEM_HOME"
|
||||
|
||||
# don't create ".bundle" in all our apps
|
||||
ENV BUNDLE_APP_CONFIG $GEM_HOME
|
||||
ENV BUNDLE_PATH="$GEM_HOME" \
|
||||
BUNDLE_BIN="$GEM_HOME/bin" \
|
||||
BUNDLE_SILENCE_ROOT_WARNING=1 \
|
||||
BUNDLE_APP_CONFIG="$GEM_HOME"
|
||||
ENV PATH $BUNDLE_BIN:$PATH
|
||||
RUN mkdir -p "$GEM_HOME" "$BUNDLE_BIN" \
|
||||
&& chmod 777 "$GEM_HOME" "$BUNDLE_BIN"
|
||||
|
||||
CMD [ "irb" ]
|
||||
|
|
|
@ -62,18 +62,17 @@ RUN set -ex \
|
|||
|
||||
ENV BUNDLER_VERSION %%BUNDLER%%
|
||||
|
||||
RUN gem install bundler --version "$BUNDLER_VERSION" \
|
||||
&& bundle config --global path "$GEM_HOME" \
|
||||
&& bundle config --global bin "$GEM_HOME/bin" \
|
||||
&& bundle config --global silence_root_warning true
|
||||
RUN gem install bundler --version "$BUNDLER_VERSION"
|
||||
|
||||
# install things globally, for great justice
|
||||
# and don't create ".bundle" in all our apps
|
||||
ENV GEM_HOME /usr/local/bundle
|
||||
ENV PATH $GEM_HOME/bin:$PATH
|
||||
RUN mkdir -p "$GEM_HOME" \
|
||||
&& chmod 777 "$GEM_HOME"
|
||||
|
||||
# don't create ".bundle" in all our apps
|
||||
ENV BUNDLE_APP_CONFIG $GEM_HOME
|
||||
ENV BUNDLE_PATH="$GEM_HOME" \
|
||||
BUNDLE_BIN="$GEM_HOME/bin" \
|
||||
BUNDLE_SILENCE_ROOT_WARNING=1 \
|
||||
BUNDLE_APP_CONFIG="$GEM_HOME"
|
||||
ENV PATH $BUNDLE_BIN:$PATH
|
||||
RUN mkdir -p "$GEM_HOME" "$BUNDLE_BIN" \
|
||||
&& chmod 777 "$GEM_HOME" "$BUNDLE_BIN"
|
||||
|
||||
CMD [ "irb" ]
|
||||
|
|
|
@ -40,18 +40,17 @@ RUN set -ex \
|
|||
|
||||
ENV BUNDLER_VERSION %%BUNDLER%%
|
||||
|
||||
RUN gem install bundler --version "$BUNDLER_VERSION" \
|
||||
&& bundle config --global path "$GEM_HOME" \
|
||||
&& bundle config --global bin "$GEM_HOME/bin" \
|
||||
&& bundle config --global silence_root_warning true
|
||||
RUN gem install bundler --version "$BUNDLER_VERSION"
|
||||
|
||||
# install things globally, for great justice
|
||||
# and don't create ".bundle" in all our apps
|
||||
ENV GEM_HOME /usr/local/bundle
|
||||
ENV PATH $GEM_HOME/bin:$PATH
|
||||
RUN mkdir -p "$GEM_HOME" \
|
||||
&& chmod 777 "$GEM_HOME"
|
||||
|
||||
# don't create ".bundle" in all our apps
|
||||
ENV BUNDLE_APP_CONFIG $GEM_HOME
|
||||
ENV BUNDLE_PATH="$GEM_HOME" \
|
||||
BUNDLE_BIN="$GEM_HOME/bin" \
|
||||
BUNDLE_SILENCE_ROOT_WARNING=1 \
|
||||
BUNDLE_APP_CONFIG="$GEM_HOME"
|
||||
ENV PATH $BUNDLE_BIN:$PATH
|
||||
RUN mkdir -p "$GEM_HOME" "$BUNDLE_BIN" \
|
||||
&& chmod 777 "$GEM_HOME" "$BUNDLE_BIN"
|
||||
|
||||
CMD [ "irb" ]
|
||||
|
|
Loading…
Reference in a new issue