fix: disable NX daemon and fix env vars for faster Docker builds

- Add NX_DAEMON=false to all Dockerfiles to prevent slow daemon startup
- Add --env-file flag to hackathon build for proper env var substitution

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Maulana Sodiqin
2025-11-25 17:39:43 +07:00
co-authored by Claude
parent 301a349776
commit ee60787100
6 changed files with 6 additions and 1 deletions
+1
View File
@@ -16,6 +16,7 @@ ARG VITE_SUPABASE_ANON_KEY
ENV VITE_SUPABASE_URL=$VITE_SUPABASE_URL
ENV VITE_SUPABASE_ANON_KEY=$VITE_SUPABASE_ANON_KEY
ENV NX_DAEMON=false
RUN npm run hackathon:build
FROM nginx:alpine AS runner