From c687fbcdab95f2519a9b47edc9dacc228d60e5c2 Mon Sep 17 00:00:00 2001 From: Ryan W Date: Sat, 25 Mar 2023 10:09:34 -0700 Subject: [PATCH] Add SECRET_KEY_BASE --- production.Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/production.Dockerfile b/production.Dockerfile index c14c52f..f952b05 100644 --- a/production.Dockerfile +++ b/production.Dockerfile @@ -78,6 +78,7 @@ USER rails:rails # https://community.render.com/t/release-command-for-db-migrations/247/6 ARG RENDER ARG DATABASE_URL +ARG SECRET_KEY_BASE RUN if [ -z "$RENDER" ]; then echo "var is unset"; else bin/rails db:migrate; fi # Start Server