You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, i notice some regression in update from ruby:2.4.1 to ruby:2.4.2
This dockerfile
FROM ruby:2.4.1
RUN git clone https://github.com/jwt/ruby-jwt.git
RUN cd ruby-jwt && bundle install
RUN git clone https://github.com/janlelis/clipboard.git
RUN cd clipboard && bundle install
CMD ls -la /clipboard/Gemfile.lock
For ruby 2.4.1 it correctly show presence of /clipboard/Gemfile.lock
But if same Dockerimage created FROM ruby:2.4.2 this cause ls: cannot access /clipboard/Gemfile.lock: No such file or directory
Probably somehow it related with update from bundler 1.15.4 to bundler 1.16.0 but even if I manully rollback to bundler 1.15.4 in ruby:2.4.2 error is the same.
This is actual for any project, i choose ruby-jwt and cliboard as they pretty small.