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

17 lines
158 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", "nuxi", "start"]