Skip to content

Commit

Permalink
Lock bundler to a specific version
Browse files Browse the repository at this point in the history
There were some changes in bundler 2.0.2 to 2.1.0 and official ruby
images that was causing issue with ruby gems executables. This is what
causing our build process to fail.

There are some fixes coming up in ruby 2.7 image and next bundler
release, but for now let's lock the bundler version to 2.0.0.

Related: rubygems/bundler#7494
Fixes: #46
  • Loading branch information
abunashir authored and ronaldtse committed Dec 28, 2019
1 parent d304c08 commit 70be494
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metanorma/Dockerfile.in
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN pip install --upgrade pip
RUN pip install idnits xml2rfc --ignore-installed six chardet

# install latest bundler
RUN gem install bundler
RUN gem install bundler -v "2.0.2"

# install metanorma toolchain
RUN mkdir -p /setup
Expand Down

0 comments on commit 70be494

Please sign in to comment.