@@ -94,7 +94,7 @@ Basics (learn more at [baseimage-docker](http://phusion.github.io/baseimage-dock
9494
9595Language support:
9696
97- * Ruby 3.2.8, 3.3.7 , 3.4.2 and JRuby 9.3.15.0 and 9.4.9.0.
97+ * Ruby 3.2.8, 3.3.8 , 3.4.2 and JRuby 9.3.15.0 and 9.4.9.0.
9898 * RVM is used to manage Ruby versions. [ Why RVM?] ( #why_rvm )
9999 * 3.4.2 is configured as the default.
100100 * JRuby is installed from source, but we register an APT entry for it.
@@ -450,8 +450,8 @@ The default Ruby (what the `/usr/bin/ruby` command executes) is the latest Ruby
450450``` dockerfile
451451# Ruby 3.2.8
452452RUN bash -lc 'rvm --default use ruby-3.2.8'
453- # Ruby 3.3.7
454- RUN bash -lc 'rvm --default use ruby-3.3.7 '
453+ # Ruby 3.3.8
454+ RUN bash -lc 'rvm --default use ruby-3.3.8 '
455455# Ruby 3.4.2
456456RUN bash -lc 'rvm --default use ruby-3.4.2'
457457# JRuby 9.3.15.0
@@ -468,9 +468,9 @@ Learn more: [RVM: Setting the default Ruby](https://rvm.io/rubies/default).
468468You can run any command with a specific Ruby version by prefixing it with ` rvm-exec <IDENTIFIER> ` . For example:
469469
470470``` bash
471- $ rvm-exec 3.3.7 ruby -v
472- Using /usr/local/rvm/gems/ruby-3.3.7
473- ruby 3.3.7 (2025-01-15 revision be31f993d7 ) [x86_64-linux]
471+ $ rvm-exec 3.3.8 ruby -v
472+ Using /usr/local/rvm/gems/ruby-3.3.8
473+ ruby 3.3.8 (2025-04-09 revision b200bad6cd ) [x86_64-linux]
474474
475475$ rvm-exec 3.4.2 ruby -v
476476Using /usr/local/rvm/gems/ruby-3.4.2
0 commit comments