|
|
@@ -1,10 +1,11 @@
|
|
|
FROM node:18-alpine AS builder
|
|
|
-RUN apk add --no-cache git
|
|
|
+RUN apk add --no-cache git git-lfs
|
|
|
WORKDIR /app
|
|
|
RUN npm install -g pnpm@9.3.0
|
|
|
COPY package.json pnpm-lock.yaml ./
|
|
|
RUN pnpm install --frozen-lockfile
|
|
|
COPY . .
|
|
|
+RUN git lfs pull
|
|
|
ARG APP_TITLE=成都网讯MaaS底座
|
|
|
ARG ENABLE_PLAYGROUND=true
|
|
|
ENV APP_TITLE=$APP_TITLE
|