test
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
mol
2023-12-13 20:57:11 +08:00
parent 901f127b8a
commit 6be7015b8a

View File

@ -2,12 +2,12 @@ FROM node:18-bullseye as dep-builder
WORKDIR /app WORKDIR /app
COPY package*.json ./ # COPY package*.json ./
RUN npm install
COPY . . COPY . .
RUN npm --registry https://registry.npm.taobao.org install
EXPOSE 8080 EXPOSE 8080
CMD [ "node", "app.js" ] CMD [ "node", "app.js" ]