frontend/Dockerfile
2026-02-07 11:52:15 +01:00

17 lines
170 B
Docker

FROM node:20.20
WORKDIR /usr/app
COPY . .
ARG VERSION
RUN npm install
RUN npx nuxi cleanup
RUN npx nuxi build
EXPOSE 3000
CMD ["node", ".output/server/index.mjs"]