Skip to content

Commit 35db219

Browse files
fixed docker image issue stating "The last version of bundler (>= 0) to support your Ruby & RubyGems was 2.4.22. Try installing it with `gem install bundler -v 2.4.22"
1 parent 90fbd13 commit 35db219

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN adduser -u 9000 -g 9000 -D app
99
COPY Gemfile Gemfile.lock /usr/src/app/
1010

1111
RUN apk add --update build-base && \
12-
gem install bundler && \
12+
gem install bundler -v 2.4.22 && \
1313
bundle install --quiet -j 4 --without=test && \
1414
chown -R app:app /usr/local/bundle && \
1515
rm -fr ~/.gem ~/.bundle ~/.wh..gem && \

0 commit comments

Comments
 (0)