Skip to content

Commit

Permalink
Install the current Bundler in Dockerfile
Browse files Browse the repository at this point in the history
In `Dockerfile`, we have been specifying the exact Bundler version to
install. This is no longer necessary.

This commit updates `Dockerfile` to install the current version of
Bundler. Bundler will then take care of setting up the correct version
to use.

Ref:
- exercism/ruby#1635 (comment)
  • Loading branch information
smaboshe committed Feb 15, 2024
1 parent e00080c commit 3710c4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RUN apk update && apk upgrade && \

COPY Gemfile Gemfile.lock .

RUN gem install bundler:2.4.18 && \
RUN gem install bundler && \
bundle config set without 'development test' && \
bundle install

Expand Down

0 comments on commit 3710c4e

Please sign in to comment.