From 3951e244023870286ae99d8391dfa8f939319744 Mon Sep 17 00:00:00 2001 From: Ryan W Date: Tue, 4 Jun 2024 23:34:48 -0700 Subject: [PATCH] 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 b578f91..53bd6aa 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -7,7 +7,7 @@ inherit_gem: rubocop-rails-omakase: rubocop.yml AllCops: - TargetRubyVersion: 3.3.0 + TargetRubyVersion: 3.3.2 TargetRailsVersion: 7.1.0 DisabledByDefault: true Exclude: diff --git a/Dockerfile b/Dockerfile index 56507f5..b6d4f04 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,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.3.1 +ARG RUBY_VERSION=3.3.2 FROM docker.io/library/ruby:$RUBY_VERSION-slim as base # Rails app lives here diff --git a/development.Dockerfile b/development.Dockerfile index 022f402..ee92495 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.3.1 +ARG RUBY_VERSION=3.3.2 FROM docker.io/library/ruby:$RUBY_VERSION-slim as base # OS Level Dependencies