From 0c70a6cab734291db907cb3da4d911e8dc6a0c3c Mon Sep 17 00:00:00 2001 From: Ryan W Date: Sun, 2 Mar 2025 17:05:07 -0800 Subject: [PATCH] complete ruby 3.4.2 update --- .rubocop.yml | 2 +- Dockerfile | 2 +- development.Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.rubocop.yml b/.rubocop.yml index 7321f10..bcc1f80 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -7,7 +7,7 @@ inherit_gem: rubocop-rails-omakase: rubocop.yml AllCops: - TargetRubyVersion: 3.4.1 + TargetRubyVersion: 3.4.2 TargetRailsVersion: 7.2.2 DisabledByDefault: true Exclude: diff --git a/Dockerfile b/Dockerfile index c5c6934..5f7131a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ # docker run -d -p 80:80 -p 443:443 --name my-app -e RAILS_MASTER_KEY= my-app # Make sure RUBY_VERSION matches the Ruby version in .ruby-version and Gemfile -ARG RUBY_VERSION=3.4.1 +ARG RUBY_VERSION=3.4.2 FROM docker.io/library/ruby:$RUBY_VERSION-slim AS base # Rails app lives here diff --git a/development.Dockerfile b/development.Dockerfile index 43dff24..0a34bb5 100644 --- a/development.Dockerfile +++ b/development.Dockerfile @@ -1,7 +1,7 @@ # syntax = docker/dockerfile:1 # Make sure RUBY_VERSION matches the Ruby version in .ruby-version and Gemfile -ARG RUBY_VERSION=3.4.1 +ARG RUBY_VERSION=3.4.2 FROM docker.io/library/ruby:$RUBY_VERSION-slim as base # OS Level Dependencies