From 85a0096846139b71c505c914a2f365e6c42ddee0 Mon Sep 17 00:00:00 2001 From: Steve Dogiakos Date: Fri, 4 Apr 2025 15:04:46 -0600 Subject: [PATCH] fix: move index.html template to correct Flask templates directory --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index ecd9ed7..cc32e1a 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,7 +1,7 @@ #!/bin/sh # Process index.html.template to create index.html # Adjust the path if your template is located somewhere else -envsubst < /templates/index.html.template > /templates/index.html +envsubst < /app/templates/index.html.template > /app/templates/index.html # Start Gunicorn; using an environment variable for workers (default is 3) exec gunicorn --bind 0.0.0.0:8000 app:app --workers ${WORKERS:-3}