From 58f96c5df98ea99de7d63f88ea4606cc317bf0e5 Mon Sep 17 00:00:00 2001 From: seymourski-github Date: Tue, 12 May 2026 07:46:37 +0100 Subject: [PATCH 1/4] draft From c4611c3a1688cda1a60fc99da5eb8f20813fb510 Mon Sep 17 00:00:00 2001 From: seymourski-github Date: Tue, 12 May 2026 07:55:12 +0100 Subject: [PATCH 2/4] task/update Ruby to 3.4.9 --- .ruby-version | 2 +- Gemfile | 2 +- Gemfile.lock | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.ruby-version b/.ruby-version index 2aa5131..7bcbb38 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -3.4.7 +3.4.9 diff --git a/Gemfile b/Gemfile index a76a62b..4827971 100644 --- a/Gemfile +++ b/Gemfile @@ -1,6 +1,6 @@ # frozen_string_literal: true -ruby "3.4.7" +ruby "3.4.9" source "https://rubygems.org" git_source(:github) { |repo| "https://github.com/#{repo}.git" } diff --git a/Gemfile.lock b/Gemfile.lock index 7c3875b..75290f7 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -236,7 +236,7 @@ DEPENDENCIES webmock RUBY VERSION - ruby 3.4.7p58 + ruby 3.4.9p82 BUNDLED WITH 2.7.2 From fa5b5faefb03b8ce4c139fdfbb0b59fa64aa3924 Mon Sep 17 00:00:00 2001 From: seymourski-github Date: Tue, 12 May 2026 07:58:19 +0100 Subject: [PATCH 3/4] task/update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ae91214..3d163ef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ruby:3.4.7-alpine3.22 AS base +FROM ruby:3.4.9-alpine3.22 AS base ENV APP_HOME=/app ENV LANG=C.UTF-8 From 4a7a98cd647a571a071cbe3f654d3abec25d75b4 Mon Sep 17 00:00:00 2001 From: seymourski-github Date: Tue, 12 May 2026 11:00:58 +0100 Subject: [PATCH 4/4] task/use ruby file .reuby-version in Gemfile --- Dockerfile | 2 +- Gemfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3d163ef..a79aa1d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ FROM base AS builder RUN apk add --update --no-cache build-base git yaml-dev WORKDIR $APP_HOME -COPY Gemfile* /app/ +COPY .ruby-version Gemfile* /app/ RUN bundle install && \ rm -rf /usr/local/bundle/*/*/cache && \ diff --git a/Gemfile b/Gemfile index 4827971..a20673f 100644 --- a/Gemfile +++ b/Gemfile @@ -1,6 +1,6 @@ # frozen_string_literal: true -ruby "3.4.9" +ruby file: ".ruby-version" source "https://rubygems.org" git_source(:github) { |repo| "https://github.com/#{repo}.git" }