Files
mol-robot/Dockerfile
mol 6be7015b8a
All checks were successful
continuous-integration/drone/push Build is passing
test
2023-12-13 20:57:11 +08:00

14 lines
185 B
Docker

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