-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Syncrhonize chrome and chrome-driver versions #55
Syncrhonize chrome and chrome-driver versions #55
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a note about the bundler line
@@ -17,7 +17,7 @@ RUN curl -sL https://deb.nodesource.com/setup_10.x | bash - \ | |||
|
|||
RUN npm install -g [email protected] | |||
|
|||
RUN gem install bundler \ | |||
RUN gem install bundler --version '>= 2.1.4' \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this needed if it'll build with ruby > 2.6, which comes with bundler built in?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added it because I was getting an error on the bundler version because it was something like 1.17...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ahh, I see - it comes with an older version :/ I double checked now and it is indeed at 1.17.2:
➜ decidim-docker git:(sandbox) docker run --name ruby -i -t ruby:2.6.6 bash
root@2ce5d8d66e46:/# ruby -v
ruby 2.6.6p146 (2020-03-31 revision 67876) [x86_64-linux]
root@2ce5d8d66e46:/# bundle -v
Bundler version 1.17.2
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, looks good for me @tramuntanal 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @tramuntanal
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 Looks good to me too
Chrome and chrome driver versions have diverged.
This PR synchronizes both in the
Dockerfile-test
.