From 61916a8a275f60e434b60c87cb609d0f5a248bb5 Mon Sep 17 00:00:00 2001 From: Andrew Tomaka Date: Mon, 16 Jun 2025 22:53:09 -0400 Subject: [PATCH] Don't default RUBY_VERSION arg --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 322fc6d..6e3d210 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,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.4.1 +ARG RUBY_VERSION FROM docker.io/library/ruby:$RUBY_VERSION-slim AS base # Rails app lives here