You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
206 B
Docker

FROM node:20-alpine AS frontend
RUN npm config set registry https://registry.npmmirror.com/
WORKDIR /app
COPY . .
RUN npm install
RUN npm run build
FROM scratch AS exporter
COPY --from=frontend /app/dist /