diff --git a/web/Dockerfile b/web/Dockerfile index e44af52..dc9dcd0 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -6,11 +6,13 @@ WORKDIR /var/app EXPOSE 8080 + +RUN npm config set registry=http://10.8.30.22:7000 RUN npm cache clean -f -RUN npm install -g node-gyp -RUN rm -rf package-lock.json -RUN npm install --registry http://10.8.30.22:7000 --legacy-peer-deps -RUN export NODE_OPTIONS=--max_old_space_size=4096&&npm run build +#RUN npm install -g node-gyp +#RUN rm -rf package-lock.json +RUN npm install --registry http://10.8.30.22:7000 +RUN npm run build RUN rm -rf client/src RUN rm -rf node_modules