From 47ec8567ca64924a06271b7daadaa53470f270be Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Sat, 7 Feb 2026 22:00:36 +0100 Subject: [PATCH] ffs --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index f6cef3c..085e12b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,10 +7,14 @@ # For a containerized dev environment, see Dev Containers: https://guides.rubyonrails.org/getting_started_with_devcontainer.html +ARG COMMIT_SHA +ARG BUILD_DATE + # Make sure RUBY_VERSION matches the Ruby version in .ruby-version ARG RUBY_VERSION=3.2.4 FROM docker.io/library/ruby:$RUBY_VERSION-slim AS base + # Rails app lives here WORKDIR /rails