From f5d68aec4a5af035892ba04d8968c36021e7fbc9 Mon Sep 17 00:00:00 2001 From: Ryan Kegel Date: Wed, 11 Feb 2026 15:24:14 -0500 Subject: [PATCH] -test environment --- frontend/vue-app/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/vue-app/Dockerfile b/frontend/vue-app/Dockerfile index e7bd266..9c44596 100644 --- a/frontend/vue-app/Dockerfile +++ b/frontend/vue-app/Dockerfile @@ -23,4 +23,4 @@ COPY nginx.conf /etc/nginx/nginx.conf ENV BACKEND_HOST=chore-app-backend # Use envsubst to replace variables in nginx.conf at startup -CMD ["/bin/sh", "-c", "envsubst < /etc/nginx/nginx.conf > /etc/nginx/nginx.conf.tmp && mv /etc/nginx/nginx.conf.tmp /etc/nginx/nginx.conf && nginx -g 'daemon off;'"] \ No newline at end of file +CMD ["/bin/sh", "-c", "envsubst < /etc/nginx/nginx.conf > /etc/nginx/nginx.conf.tmp && mv /etc/nginx/nginx.conf.tmp /etc/nginx/nginx.conf && echo 'envsubst completed' && echo '=== nginx.conf ===' && cat /etc/nginx/nginx.conf && echo '=== end nginx.conf ===' && nginx -g 'daemon off;'"]