certd/docker/run/Dockerfile

9 lines
264 B
Docker
Raw Normal View History

2023-05-26 04:48:06 +00:00
FROM registry.cn-shenzhen.aliyuncs.com/handsfree/certd:latest
2023-05-26 06:08:37 +00:00
EXPOSE 7001
2023-05-26 06:31:37 +00:00
RUN npm install pm2 -g --registry=https://registry.npmmirror.com
CMD ["pm2-runtime", "start", "./bootstrap.js","--name", "certd","-i","1","--", "-p", "7001"]
#CMD ["npm","run", "start"]
2023-05-26 04:48:06 +00:00