fix: restore environment variables in runner stage for correct network binding

This commit is contained in:
ngthanhvu
2026-08-07 02:47:34 -04:00
parent e065befd1f
commit 8c25f121f2
+4
View File
@@ -14,6 +14,10 @@ RUN npm run build
FROM node:22-alpine AS runner
WORKDIR /workspace
ENV NODE_ENV=production
ENV HOST=0.0.0.0
ENV PORT=3002
ENV NITRO_HOST=0.0.0.0
ENV NITRO_PORT=3002
COPY --from=builder /app/.output ./.output
EXPOSE 3002
CMD ["node", ".output/server/index.mjs"]