Skip to content
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

Update Dockerfile and configs to latest dependencies and fix deprecated Capybara field #616

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ENV RAILS_ENV production
RUN mkdir $APP_HOME
WORKDIR $APP_HOME

RUN gem install bundler:2.2.32
RUN gem install bundler:2.3.10
ADD Gemfile* $APP_HOME/
RUN bundle install --without development test

Expand Down
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
"vue-turbolinks": "^2.1.0"
},
"version": "2.1.6",
"engines": {
"node": "18.x",
"yarn": "1.x"
},
"devDependencies": {
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.3.0",
Expand Down
2 changes: 1 addition & 1 deletion spec/support/capybara.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
client = Selenium::WebDriver::Remote::Http::Default.new
client.read_timeout = 120

Capybara::Selenium::Driver.new(app, browser: :chrome, http_client: client, capabilities: [options])
Capybara::Selenium::Driver.new(app, browser: :chrome, http_client: client, options: options)
end

Capybara.default_driver = :chrome
Loading