vue-pure-admin2/Dockerfile

20 lines
425 B
Docker
Raw Normal View History

FROM node:18-alpine as build-stage
2023-05-31 18:18:27 +08:00
WORKDIR /app
RUN corepack enable
RUN corepack prepare pnpm@8.6.10 --activate
2023-05-31 18:18:27 +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;"]