FROM node:14.16 as stage-build ARG TARGETARCH ARG NPM_REGISTRY="https://registry.npmmirror.com" WORKDIR /data RUN set -ex \ && npm config set registry ${NPM_REGISTRY} \ && yarn config set registry ${NPM_REGISTRY} ADD package.json yarn.lock /data RUN --mount=type=cache,target=/usr/local/share/.cache/yarn,sharing=locked,id=lina \ yarn install ARG VERSION ENV VERSION=$VERSION ADD . /data RUN --mount=type=cache,target=/usr/local/share/.cache/yarn,sharing=locked,id=lina \ sed -i "s@Version .*@Version ${VERSION}@g" src/layout/components/Footer/index.vue \ && yarn build FROM nginx:alpine COPY --from=stage-build /data/lina /opt/lina COPY nginx.conf /etc/nginx/conf.d/default.conf