Files
2026-04-02 09:23:57 +08:00

10 lines
191 B
Docker

FROM node:20-alpine as builder
WORKDIR /app
COPY . .
RUN corepack enable pnpm
RUN pnpm install
RUN pnpm build
FROM nginx:1.27 as runner
COPY --from=builder /app/dist/ /usr/share/nginx/html/