Files
estel_docs/Dockerfile
2025-07-30 10:08:31 +08:00

12 lines
190 B
Docker

FROM node:22-alpine AS build
WORKDIR /app
# Copy the entire project
COPY .output ./.output
# Change the port and host
ENV PORT=3000
ENV HOST=0.0.0.0
CMD ["node", "/app/server/index.mjs"]