From f7d6bb36b6fafdfba24e98b612bd4a9073dbc538 Mon Sep 17 00:00:00 2001 From: Echo Date: Mon, 19 Jan 2026 02:24:20 -0500 Subject: [PATCH] update ruby to 3.4.8 (#805) --- .ruby-version | 2 +- Dockerfile | 2 +- Dockerfile.dev | 2 +- Dockerfile.production-worker | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.ruby-version b/.ruby-version index fdeaef8..a3808a4 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -ruby-3.4.7 +ruby-3.4.8 diff --git a/Dockerfile b/Dockerfile index 40d6ee3..a22a457 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ # For a containerized dev environment, see Dev Containers: https://guides.rubyonrails.org/getting_started_with_devcontainer.html # Make sure RUBY_VERSION matches the Ruby version in .ruby-version -ARG RUBY_VERSION=3.4.7 +ARG RUBY_VERSION=3.4.8 FROM docker.io/library/ruby:$RUBY_VERSION-slim AS base # Rails app lives here diff --git a/Dockerfile.dev b/Dockerfile.dev index 56dcee5..1196448 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -1,4 +1,4 @@ -FROM ruby:3.4.7 +FROM ruby:3.4.8 # Install system dependencies RUN apt-get update -qq && \ diff --git a/Dockerfile.production-worker b/Dockerfile.production-worker index ae5fca7..b86b0c5 100644 --- a/Dockerfile.production-worker +++ b/Dockerfile.production-worker @@ -6,7 +6,7 @@ # docker run -d -e RAILS_MASTER_KEY= --name harbor-worker harbor-worker # Make sure RUBY_VERSION matches the Ruby version in .ruby-version -ARG RUBY_VERSION=3.4.7 +ARG RUBY_VERSION=3.4.8 FROM docker.io/library/ruby:$RUBY_VERSION-slim AS base # Rails app lives here