From cba7de1482815d9793d8a91fba9efc5201cd7c2f Mon Sep 17 00:00:00 2001 From: sharkby7e Date: Mon, 28 Oct 2024 23:38:41 -0400 Subject: [PATCH] fix docker file to use correct ruby version --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 249f01c..3dfd2d8 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.2.2 +ARG RUBY_VERSION=3.3.5 FROM ruby:$RUBY_VERSION-slim AS base LABEL fly_launch_runtime="rails"