rails_api_base
rails_api_base copied to clipboard
Set bundler version on Dockerfile
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