Skip to content
Snippets Groups Projects
Commit baa292f2 authored by Rafal.Radolinski's avatar Rafal.Radolinski
Browse files

nokogiri vuln fix

parent 7c79bdb2
No related branches found
No related tags found
No related merge requests found
......@@ -75,8 +75,8 @@ GEM
autoprefixer-rails (10.4.2.0)
execjs (~> 2)
aws-eventstream (1.2.0)
aws-partitions (1.554.0)
aws-sdk-core (3.126.0)
aws-partitions (1.556.0)
aws-sdk-core (3.126.2)
aws-eventstream (~> 1, >= 1.0.2)
aws-partitions (~> 1, >= 1.525.0)
aws-sigv4 (~> 1.1)
......@@ -150,10 +150,10 @@ GEM
httparty (0.18.1)
mime-types (~> 3.0)
multi_xml (>= 0.5.2)
i18n (1.9.1)
i18n (1.10.0)
concurrent-ruby (~> 1.0)
ibsciss-middleware (0.4.2)
jmespath (1.5.0)
jmespath (1.6.0)
jquery-rails (4.4.0)
rails-dom-testing (>= 1, < 3)
railties (>= 4.2.0)
......@@ -181,11 +181,11 @@ GEM
mime-types-data (~> 3.2015)
mime-types-data (3.2022.0105)
mini_mime (1.1.2)
mini_portile2 (2.7.1)
mini_portile2 (2.8.0)
mini_racer (0.3.1)
libv8 (~> 8.4.255)
minitest (5.15.0)
msgpack (1.4.4)
msgpack (1.4.5)
multi_xml (0.6.0)
mysql2 (0.5.3)
nexus_cqrs (0.2.2)
......@@ -200,8 +200,8 @@ GEM
activesupport
bunny
nio4r (2.5.8)
nokogiri (1.13.1)
mini_portile2 (~> 2.7.0)
nokogiri (1.13.3)
mini_portile2 (~> 2.8.0)
racc (~> 1.4)
pg (1.2.3)
popper_js (1.16.0)
......@@ -330,7 +330,7 @@ GEM
simplecov-html (~> 0.11)
simplecov_json_formatter (~> 0.1)
simplecov-html (0.12.3)
simplecov_json_formatter (0.1.3)
simplecov_json_formatter (0.1.4)
sneakers (2.12.0)
bunny (~> 2.14)
concurrent-ruby (~> 1.0)
......
......@@ -7,7 +7,7 @@ To update the gems in this core image, great care must be taken. Once the gemfil
a simple helper script. There are many ways of achieving this, but the recommended way is:
```
docker run -it -v "$(pwd)":/app -v /usr/local/bundle:/usr/local/bundle ruby:2.7.1 sh -c "apt-get update; apt-get install -y cmake build-essential; ls /usr/local/bundle; cd /app; gem install bundler:2.1; bundle update; bundle install;"
docker run -it -v "$(pwd)":/app -v /usr/local/bundle:/usr/local/bundle ruby:2.7.2 sh -c "apt-get update; apt-get install -y cmake build-essential; ls /usr/local/bundle; cd /app; gem install bundler:2.1; bundle update; bundle install;"
```
Once both the `gemfile` and `gemfile.lock` files are both updated, a commit can be created to force a new update.
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment