Files
react-template/Dockerfile
T

10 lines
196 B
Docker
Raw Normal View History

2026-06-02 17:19:29 +08:00
FROM node:24-trixie-slim as builder
2025-03-26 19:06:46 +08:00
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/