mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-16 16:39:39 +02:00
The entrypoint was trying to write to /app/build/client/config.json with an absolute path, but since WORKDIR is /app/apps/manacore/apps/web, it should use relative paths instead. Changes: - Use relative path 'build/client/config.json' instead of '/app/build/client/config.json' - Add 'mkdir -p build/client' to ensure directory exists - Update cat command to use relative path This fixes the "nonexistent directory" error causing manacore-web to crash in staging environment. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
40 lines
1.1 KiB
Bash
Executable file
40 lines
1.1 KiB
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
# Docker Entrypoint for Manacore Web
|
|
# Generates runtime config from environment variables
|
|
# Implements "build once, configure at runtime" pattern
|
|
|
|
echo "🔧 Generating runtime configuration..."
|
|
|
|
# Default values for local development
|
|
API_BASE_URL=${API_BASE_URL:-"http://localhost:5173"}
|
|
AUTH_URL=${AUTH_URL:-"http://localhost:3001"}
|
|
TODO_API_URL=${TODO_API_URL:-"http://localhost:3018"}
|
|
CALENDAR_API_URL=${CALENDAR_API_URL:-"http://localhost:3016"}
|
|
CLOCK_API_URL=${CLOCK_API_URL:-"http://localhost:3017"}
|
|
CONTACTS_API_URL=${CONTACTS_API_URL:-"http://localhost:3015"}
|
|
|
|
# Ensure the directory exists (it should from the build, but be safe)
|
|
mkdir -p build/client
|
|
|
|
# Generate config.json from template
|
|
cat > build/client/config.json <<EOF
|
|
{
|
|
"API_BASE_URL": "${API_BASE_URL}",
|
|
"AUTH_URL": "${AUTH_URL}",
|
|
"TODO_API_URL": "${TODO_API_URL}",
|
|
"CALENDAR_API_URL": "${CALENDAR_API_URL}",
|
|
"CLOCK_API_URL": "${CLOCK_API_URL}",
|
|
"CONTACTS_API_URL": "${CONTACTS_API_URL}"
|
|
}
|
|
EOF
|
|
|
|
echo "✅ Runtime configuration generated:"
|
|
cat build/client/config.json
|
|
|
|
echo ""
|
|
echo "🚀 Starting Node server..."
|
|
|
|
# Execute the CMD (node build)
|
|
exec "$@"
|