Files
mol-robot/Dockerfile
mol ae6d120605
All checks were successful
continuous-integration/drone/push Build is passing
test
2023-12-13 23:23:00 +08:00

14 lines
161 B
Docker

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