File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 33
44# Base stage
55# We're starting from an official Ruby Docker image. It is based on Alpine, which is a lightweight Linux distribution.
6- FROM ruby:3.2.1 -alpine AS base
6+ FROM ruby:3.4.5 -alpine AS base
77
88# All the operations following this instruction will be performed in the /app directory in the Docker image filesystem.
99WORKDIR /app
Original file line number Diff line number Diff line change 1- #!/Users/dilraj/.rvm/rubies/ruby-3.2.1 /bin/ruby
1+ #!/Users/dilraj/.rvm/rubies/ruby-3.4.5 /bin/ruby
22# frozen_string_literal: true
33
44APP_PATH = File . expand_path ( '../config/application' , __dir__ )
Original file line number Diff line number Diff line change 1- #!/Users/dilraj/.rvm/rubies/ruby-3.2.1 /bin/ruby
1+ #!/Users/dilraj/.rvm/rubies/ruby-3.4.5 /bin/ruby
22# frozen_string_literal: true
33
44require_relative '../config/boot'
Original file line number Diff line number Diff line change 1- #!/Users/dilraj/.rvm/rubies/ruby-3.2.1 /bin/ruby
1+ #!/Users/dilraj/.rvm/rubies/ruby-3.4.5 /bin/ruby
22# frozen_string_literal: true
33
44require 'fileutils'
You can’t perform that action at this time.
0 commit comments