Skip to content

Commit

Permalink
Install bundler 2.2.11 and update gem
Browse files Browse the repository at this point in the history
Install bundler 2 and update gem from 3.0.3 to 3.2.14

Bundler 2 is only used to install core's gems when building the image,
bundler 1 is still used for all updates.
  • Loading branch information
feelepxyz committed Mar 15, 2021
1 parent c129d85 commit 6e99d7e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,13 @@ RUN apt-get update \

# Install Ruby 2.6.6, update RubyGems, and install Bundler
ENV BUNDLE_SILENCE_ROOT_WARNING=1
RUN apt-get install -y software-properties-common \
RUN apt-get update && apt-get install -y software-properties-common \
&& apt-add-repository ppa:brightbox/ruby-ng \
&& apt-get update \
&& apt-get install -y ruby2.6 ruby2.6-dev \
&& gem update --system 3.0.3 \
&& gem install bundler -v 1.17.3 --no-document
&& gem update --system 3.2.14 \
&& gem install bundler -v 1.17.3 --no-document \
&& gem install bundler -v 2.2.11 --no-document


### PYTHON
Expand Down

0 comments on commit 6e99d7e

Please sign in to comment.