From 224acdbdd9cec2be8dfb301ba36442fce149473a Mon Sep 17 00:00:00 2001 From: Ryan W Date: Sat, 30 Sep 2023 19:08:46 -0700 Subject: [PATCH] run the check, but don't do anything yet --- bin/docker-entrypoint-production | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/docker-entrypoint-production b/bin/docker-entrypoint-production index 452771b..c876d9b 100755 --- a/bin/docker-entrypoint-production +++ b/bin/docker-entrypoint-production @@ -1,8 +1,8 @@ #!/bin/bash -e # If running the rails server then create or migrate existing database -# if [ "${*}" == "./bin/rails server" ]; then +if [ "${*}" == "./bin/rails server" ]; then # ./bin/rails db:prepare -# fi +fi exec "${@}"