28 lines
677 B
Docker
28 lines
677 B
Docker
FROM node:22-slim AS builder
|
|
|
|
ENV PNPM_HOME="/pnpm"
|
|
ENV PATH="$PNPM_HOME:$PATH"
|
|
ENV NODE_OPTIONS="--max-old-space-size=8192"
|
|
ENV TZ="Asia/Shanghai"
|
|
ENV CI="true"
|
|
|
|
RUN npm i -g corepack && corepack enable
|
|
|
|
WORKDIR /app
|
|
COPY . /app
|
|
|
|
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile
|
|
RUN pnpm run build:antdv-next
|
|
|
|
FROM nginx:stable-alpine
|
|
|
|
RUN echo "types { application/javascript js mjs; }" > /etc/nginx/conf.d/mjs.conf \
|
|
&& rm -rf /etc/nginx/conf.d/default.conf
|
|
|
|
COPY --from=builder /app/apps/dist /usr/share/nginx/html
|
|
COPY --from=builder /app/scripts/deploy/nginx.conf /etc/nginx/nginx.conf
|
|
|
|
EXPOSE 8080
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|