frontend/Dockerfile
2026-03-14 17:28:52 +01:00

17 lines
174 B
Docker

FROM node:22-alpine
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"]