From 775b4e57cf9e38bef9bb2f3f174af2cbc4c5fccd Mon Sep 17 00:00:00 2001 From: Cirdes Henrique Date: Fri, 8 Nov 2024 17:31:07 -0300 Subject: [PATCH] Fix Ruby Version on Dockerfiles --- .devcontainer/Dockerfile | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index f0987d0..90bfc97 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,3 +1,3 @@ # Make sure RUBY_VERSION matches the Ruby version in .ruby-version -ARG RUBY_VERSION=3.3.4 +ARG RUBY_VERSION=3.3.5 FROM ghcr.io/rails/devcontainer/images/ruby:$RUBY_VERSION diff --git a/Dockerfile b/Dockerfile index a50a339..7f23a6c 100644 --- a/Dockerfile +++ b/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.4 +ARG RUBY_VERSION=3.3.5 FROM quay.io/evl.ms/fullstaq-ruby:${RUBY_VERSION}-jemalloc-slim as base LABEL fly_launch_runtime="rails"