fix: bind server to 0.0.0.0 for container deployment

This commit is contained in:
2026-04-21 23:33:21 +02:00
parent 7146edc7bb
commit 7151a0b7ba
2 changed files with 6 additions and 0 deletions

View File

@@ -23,5 +23,7 @@ COPY --from=builder /app/package.json ./package.json
EXPOSE 3000
ENV NODE_ENV=production
ENV HOST=0.0.0.0
ENV PORT=3000
CMD ["node", "dist/server/server.js"]