From 9a3cf45542a5ada395f8467770992648b3fe815f Mon Sep 17 00:00:00 2001 From: meyric Date: Fri, 23 Aug 2024 09:27:33 +0100 Subject: [PATCH] Chore: Update default Rails version --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b8d0a42..22204fa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ RUN apt-get update -qq && \ apt-get install --no-install-recommends -y build-essential curl git # Install Rails -ARG RAILS_VERSION=7.1.3.2 +ARG RAILS_VERSION=7.2.1 RUN gem install rails -v ${RAILS_VERSION} # create empty Rails application, we don't need ActiveRecord or JavaScript