File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ RUBY_VERSION="$(cat .ruby-version | tr -d '\n')"
33# copy the file only if it doesn't already exist
44cp -n .devcontainer/.env.codespaces .env
55
6- # If the project's required ruby version changes from 3.3.6 , this command
6+ # If the project's required ruby version changes from 3.3.8 , this command
77# will download and compile the correct version, but it will take a long time.
8- if [ " $RUBY_VERSION " != " 3.3.6 " ]; then
8+ if [ " $RUBY_VERSION " != " 3.3.8 " ]; then
99 rvm install $RUBY_VERSION
1010 rvm use $RUBY_VERSION
1111 echo " Ruby $RUBY_VERSION installed"
Original file line number Diff line number Diff line change 1- 3.3.6
1+ 3.3.8
Original file line number Diff line number Diff line change 1- ruby 3.3.6
2- npm 11.0.0
1+ ruby 3.3.8
32nodejs 22.11.0
Original file line number Diff line number Diff line change 1- FROM ruby:3.3.6 -alpine AS builder
1+ FROM ruby:3.3.8 -alpine AS builder
22
33RUN apk update && apk upgrade && apk add --update --no-cache \
44 build-base \
@@ -14,7 +14,7 @@ RUN bundle install
1414
1515# ## BUILD STEP DONE ###
1616
17- FROM ruby:3.3.6 -alpine
17+ FROM ruby:3.3.8 -alpine
1818
1919ARG RAILS_ROOT=/usr/src/app/
2020
Original file line number Diff line number Diff line change 22
33source "https://rubygems.org"
44
5- ruby "3.3.6 "
5+ ruby "3.3.8 "
66gem "rails" , "~> 7.2"
77
88gem "after_party" # post-deployment tasks
Original file line number Diff line number Diff line change @@ -735,7 +735,7 @@ DEPENDENCIES
735735 wicked
736736
737737RUBY VERSION
738- ruby 3.3.6p108
738+ ruby 3.3.8p144
739739
740740BUNDLED WITH
741741 2.6.6
Original file line number Diff line number Diff line change 3939
4040 gemConfig = { } ;
4141 # See available versions here: https://github.com/bobvanderlinden/nixpkgs-ruby/blob/master/ruby/versions.json
42- ruby = pkgs . "ruby-3.3.6 " ;
42+ ruby = pkgs . "ruby-3.3.8 " ;
4343
4444 bundixcli = bundix . packages . ${ system } . default ;
4545 in rec {
You can’t perform that action at this time.
0 commit comments