fix: update Docker Compose deployment command and configure server to listen on all interfaces
Some checks failed
Build and Deploy Thoughts / build-and-deploy-local (push) Failing after 2m0s

This commit is contained in:
2025-09-09 04:13:51 +02:00
parent ec73a0c373
commit 082f11a3e9
2 changed files with 3 additions and 1 deletions

View File

@@ -25,5 +25,5 @@ COPY --from=builder /app/.next/static ./.next/static
EXPOSE 3000
CMD ["node", "server.js"]
CMD ["node", "server.js", "-H", "0.0.0.0", "-p", "3000"]