diff --git a/docker/image/Dockerfile b/docker/image/Dockerfile index 4d6ef584d..04f447410 100644 --- a/docker/image/Dockerfile +++ b/docker/image/Dockerfile @@ -4,16 +4,16 @@ ENV NODE_ENV production ENV MIDWAY_SERVER_ENV production WORKDIR /app/ ENV node_sqlite3_binary_host_mirror https://registry.npmmirror.com/-/binary/sqlite3 -#RUN npm install -g pnpm +RUN npm install -g pnpm@8.17.5 #RUN npm install cross-env -g --registry=https://registry.npmmirror.com #RUN npm install pm2 -g --registry=https://registry.npmmirror.com #RUN pm2 install pm2-logrotate ADD ./workspace/certd-server/ /app/ RUN sed -i "s/workspace://g" "/app/package.json" -RUN yarn install --registry=https://registry.npmmirror.com +#RUN yarn install --registry=https://registry.npmmirror.com #RUN yarn install --production +RUN pnpm install RUN node ./before-build.js -RUN yarn install --registry=https://registry.npmmirror.com RUN npm run build #CMD ["pm2-runtime", "start", "./bootstrap.js","--name", "certd","-i","1"] CMD ["npm", "run","start"]