From cfcfd1f9e24b63eed9779767d90cf42386c6d557 Mon Sep 17 00:00:00 2001 From: meyric Date: Fri, 12 Jul 2024 09:34:40 +0100 Subject: [PATCH] Set Ruby version to 3.1.6 in Dockerfile Our Rails intergration tests run on a single version of Ruby so we default to a compatible version. When running our Ruby version tests the default is overridden. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b3578e0..1b12e60 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # We want to support older Rubies -ARG RUBY_VERSION=2.7.8 +ARG RUBY_VERSION=3.1.6 FROM registry.docker.com/library/ruby:$RUBY_VERSION-slim as base # Rails app lives here