빌드 깨짐 수정

This commit is contained in:
2025-08-05 11:28:44 +09:00
parent c2fa1ec589
commit 9527b7d385
12 changed files with 181 additions and 51 deletions

10
docker-entrypoint.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/sh
# Exit immediately if a command exits with a non-zero status.
set -e
# Substitute environment variables in the nginx template
envsubst '${VITE_API_PROXY_TARGET}' < /etc/nginx/templates/nginx.conf.template > /etc/nginx/nginx.conf
# Execute the command passed to this script, e.g., "nginx -g 'daemon off;'"
exec "$@"