Skip to content

Commit 39e7189

Browse files
Upgrade ruby 3.4.9 (#111)
* draft * task/update Ruby to 3.4.9 * task/update Dockerfile * task/use ruby file .reuby-version in Gemfile
1 parent 67b48c9 commit 39e7189

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.4.7
1+
3.4.9

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3.4.7-alpine3.22 AS base
1+
FROM ruby:3.4.9-alpine3.22 AS base
22

33
ENV APP_HOME=/app
44
ENV LANG=C.UTF-8
@@ -10,7 +10,7 @@ FROM base AS builder
1010
RUN apk add --update --no-cache build-base git yaml-dev
1111

1212
WORKDIR $APP_HOME
13-
COPY Gemfile* /app/
13+
COPY .ruby-version Gemfile* /app/
1414

1515
RUN bundle install && \
1616
rm -rf /usr/local/bundle/*/*/cache && \

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# frozen_string_literal: true
22

3-
ruby "3.4.7"
3+
ruby file: ".ruby-version"
44
source "https://rubygems.org"
55
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
66

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ DEPENDENCIES
236236
webmock
237237

238238
RUBY VERSION
239-
ruby 3.4.7p58
239+
ruby 3.4.9p82
240240

241241
BUNDLED WITH
242242
2.7.2

0 commit comments

Comments
 (0)