rails_api_base icon indicating copy to clipboard operation
rails_api_base copied to clipboard

Set bundler version on Dockerfile

Open martinjaimem opened this issue 4 years ago • 0 comments

Right now there is a step in the Dockerfile that does:

RUN gem install bundler

the problem here is that we could be building two images with the same Dockerfile and expect different results depending on the time they were created.

Solution:

replace:

RUN gem install bundler

with:

RUN gem install bundler:2.2.0

martinjaimem avatar Dec 11 '20 12:12 martinjaimem