Some checks are pending
CI / Test (ubuntu-latest) (push) Waiting to run
CI / Test (windows-latest) (push) Waiting to run
CI / Lint (ubuntu-latest) (push) Waiting to run
CI / Lint (windows-latest) (push) Waiting to run
CI / Check (ubuntu-latest) (push) Waiting to run
CI / Check (windows-latest) (push) Waiting to run
CI / CI OK (push) Blocked by required conditions
CodeQL / Analyze (javascript-typescript) (push) Waiting to run
Deploy Website on push / Deploy Push Playground Ftp (push) Waiting to run
Deploy Website on push / Deploy Push Docs Ftp (push) Waiting to run
Deploy Website on push / Deploy Push Antd Ftp (push) Waiting to run
Deploy Website on push / Deploy Push Element Ftp (push) Waiting to run
Deploy Website on push / Deploy Push Naive Ftp (push) Waiting to run
Deploy Website on push / Rerun on failure (push) Blocked by required conditions
Release Drafter / update_release_draft (push) Waiting to run
22 lines
647 B
Docker
22 lines
647 B
Docker
FROM node:lts-alpine AS base
|
|
ENV PNPM_HOME="/pnpm"
|
|
ENV PATH="$PNPM_HOME:$PATH"
|
|
ENV NODE_ENV=production
|
|
ARG NPM_CONFIG_REGISTRY=https://registry.npmmirror.com
|
|
RUN npm config set registry ${NPM_CONFIG_REGISTRY}
|
|
RUN corepack enable
|
|
WORKDIR /app
|
|
|
|
FROM base AS builder
|
|
COPY . .
|
|
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm i --frozen-lockfile
|
|
ARG RELATIVE_PATH=/
|
|
ARG BASE_URI=
|
|
RUN pnpm run build:antd -- --base=${RELATIVE_PATH}${BASE_URI}
|
|
|
|
FROM nginx:stable-alpine
|
|
ARG BASE_URI=
|
|
COPY --from=builder /app/apps/web-antd/dist /usr/share/nginx/html/${BASE_URI}
|
|
COPY --from=builder /app/scripts/deploy/nginx.conf /etc/nginx/nginx.conf
|
|
EXPOSE 8080
|