admin-frontend/Dockerfile
2026-03-22 09:18:35 +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"]