certd/docker/run/Dockerfile

10 lines
283 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:43:38 +00:00
RUN npm run build
#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