Files
2026-06-02 17:19:29 +08:00

10 lines
196 B
Docker

FROM node:24-trixie-slim 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/