fix: simplify CMD instruction in Dockerfile by removing redundant parameters
All checks were successful
Build and Deploy Thoughts / build-and-deploy-local (push) Successful in 1m20s

This commit is contained in:
2025-09-09 04:19:40 +02:00
parent 082f11a3e9
commit 5282376860

View File

@@ -24,6 +24,6 @@ COPY --from=builder /app/.next/standalone ./
COPY --from=builder /app/.next/static ./.next/static COPY --from=builder /app/.next/static ./.next/static
EXPOSE 3000 EXPOSE 3000
ENV HOSTNAME="0.0.0.0"
CMD ["node", "server.js", "-H", "0.0.0.0", "-p", "3000"] CMD ["node", "server.js"]