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
Copy file name to clipboardExpand all lines: README.md
+6-12Lines changed: 6 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -94,7 +94,7 @@ Basics (learn more at [baseimage-docker](http://phusion.github.io/baseimage-dock
94
94
95
95
Language support:
96
96
97
-
* Ruby 3.1.7, 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.
98
98
* RVM is used to manage Ruby versions. [Why RVM?](#why_rvm)
99
99
* 3.4.2 is configured as the default.
100
100
* JRuby is installed from source, but we register an APT entry for it.
@@ -129,7 +129,6 @@ Passenger-docker consists of several images, each one tailor made for a specific
129
129
130
130
**Ruby images**
131
131
132
-
*`phusion/passenger-ruby31` - Ruby 3.1.
133
132
*`phusion/passenger-ruby32` - Ruby 3.2.
134
133
*`phusion/passenger-ruby33` - Ruby 3.3.
135
134
*`phusion/passenger-ruby34` - Ruby 3.4.
@@ -214,7 +213,6 @@ CMD ["/sbin/my_init"]
214
213
#RUN /pd_build/nodejs.sh 20
215
214
#
216
215
# Ruby support
217
-
#RUN /pd_build/ruby-3.1.*.sh
218
216
#RUN /pd_build/ruby-3.2.*.sh
219
217
#RUN /pd_build/ruby-3.3.*.sh
220
218
#RUN /pd_build/ruby-3.4.*.sh
@@ -280,8 +278,6 @@ server {
280
278
passenger_ruby /usr/bin/ruby3.3;
281
279
# For Ruby 3.2
282
280
passenger_ruby /usr/bin/ruby3.2;
283
-
# For Ruby 3.1
284
-
passenger_ruby /usr/bin/ruby3.1;
285
281
286
282
# For Python ie. Django
287
283
passenger_app_type wsgi;
@@ -452,12 +448,10 @@ We use [RVM](https://rvm.io/) to install and to manage Ruby interpreters. Becaus
452
448
The default Ruby (what the `/usr/bin/ruby` command executes) is the latest Ruby version that you've chosen to install. You can use RVM select a different version as default.
0 commit comments