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

17 lines
169 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 ["npx", ".output/server/index.mjs"]