From 5c123a8b9211e2cd262ad7d45200ccc4856d9d17 Mon Sep 17 00:00:00 2001 From: Eric Pugh Date: Sat, 18 Jan 2025 10:33:55 -0500 Subject: [PATCH] Update remaining locations that dependabot missed.. --- .circleci/config.yml | 2 +- Dockerfile.dev | 2 +- Dockerfile.prod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d28eb5a51..413bb79ea 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2 jobs: build: docker: - - image: cimg/ruby:3.3.6-browsers + - image: cimg/ruby:3.4.1-browsers environment: # environment variables for primary container BUNDLE_JOBS: 3 BUNDLE_RETRY: 3 diff --git a/Dockerfile.dev b/Dockerfile.dev index e79b3fc3e..9e9a13854 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -1,4 +1,4 @@ -FROM ruby:3.3.6-bullseye +FROM ruby:3.4.1-bullseye LABEL maintainer="quepid_admin@opensourceconnections.com" diff --git a/Dockerfile.prod b/Dockerfile.prod index e0c5b2b31..3a6260b21 100644 --- a/Dockerfile.prod +++ b/Dockerfile.prod @@ -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.3.6 +ARG RUBY_VERSION=3.4.1 FROM docker.io/library/ruby:$RUBY_VERSION-slim AS base # Rails app lives here