Files
mol-robot/Dockerfile
mol 1fbe397078
Some checks are pending
continuous-integration/drone/push Build is running
test
2023-12-14 10:32:38 +08:00

13 lines
162 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" ]