Files
certd/docker/image/Dockerfile
T

12 lines
284 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 10:54:30 +08:00
RUN npm install -g cross-env --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 09:09:57 +08:00
RUN yarn install -P --registry=https://registry.npmmirror.com
2023-05-26 12:33:03 +08:00
CMD ["node","./bootstrap.js"]
2023-05-25 15:17:58 +08:00