diff --git a/Dockerfile b/Dockerfile index 7600b86..a87c0d2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM node:12 AS builder WORKDIR /app ADD package.json /app/ -RUN npm config set registry https://registry.npmmirror.com && npm install +RUN npm config set registry https://registry.npmmirror.com && npm install git+https://gitee.com/shihairong/raphael && npm install ADD . /app RUN npm run build:prod