diff --git a/Dockerfile b/Dockerfile index b55a289..1547095 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"]