Skip to content

Commit 77eace4

Browse files
committed
Update Ruby version spec
1 parent 84047b7 commit 77eace4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
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.
99
WORKDIR /app

bin/rails

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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

44
APP_PATH = File.expand_path('../config/application', __dir__)

bin/rake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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

44
require_relative '../config/boot'

bin/setup

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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

44
require 'fileutils'

0 commit comments

Comments
 (0)