diff --git a/Dockerfile b/Dockerfile index 620fe57..0d1794d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,12 +2,12 @@ FROM node:18-bullseye as dep-builder WORKDIR /app -COPY package*.json ./ - -RUN npm install +# COPY package*.json ./ COPY . . +RUN npm --registry https://registry.npm.taobao.org install + EXPOSE 8080 CMD [ "node", "app.js" ]