2024-08-28 10:36:16 +08:00
|
|
|
FROM node:20-alpine as build-stage
|
2024-05-11 14:48:02 +08:00
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
RUN corepack enable
|
2024-08-28 10:36:16 +08:00
|
|
|
RUN corepack prepare pnpm@latest --activate
|
2024-05-11 14:48:02 +08:00
|
|
|
|
|
|
|
RUN npm config set registry https://registry.npmmirror.com
|
|
|
|
|
|
|
|
COPY .npmrc package.json pnpm-lock.yaml ./
|
|
|
|
RUN pnpm install --frozen-lockfile
|
|
|
|
|
|
|
|
COPY . .
|
|
|
|
RUN pnpm build
|
|
|
|
|
|
|
|
FROM nginx:stable-alpine as production-stage
|
|
|
|
|
|
|
|
COPY --from=build-stage /app/dist /usr/share/nginx/html
|
|
|
|
EXPOSE 80
|
|
|
|
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|