Files
certd/docker/image/Dockerfile
T

14 lines
418 B
Docker
Raw Normal View History

2023-05-25 22:39:14 +08:00
FROM registry.cn-shenzhen.aliyuncs.com/handsfree/node:16-alpine
2023-05-26 12:48:06 +08:00
RUN npm install cross-env -g --registry=https://registry.npmmirror.com
RUN npm install pm2 -g --registry=https://registry.npmmirror.com
2023-05-25 20:44:41 +08:00
ADD ./workspace/certd-server/ /app/
2023-05-25 15:17:58 +08:00
WORKDIR /app/
2023-05-26 12:48:06 +08:00
ENV NODE_ENV production
2023-05-26 09:09:57 +08:00
RUN yarn install -P --registry=https://registry.npmmirror.com
2023-05-26 12:48:06 +08:00
CMD ["pm2-runtime", "start", "./bootstrap.js","--name", "certd","-i","1"]
2023-05-26 12:33:03 +08:00
2023-05-25 15:17:58 +08:00