Files
nuxtui_lab/dockerfile
2025-12-04 17:13:39 +00:00

14 lines
159 B
Plaintext

# Use the lightweight node
FROM node:22-alpine
WORKDIR /app
COPY .output .
ENV PORT=3000
ENV HOST=0.0.0.0
VOLUME ["/app"]
CMD ["node","server/index.mjs"]