2023-05-25 14:39:14 +00:00
|
|
|
FROM registry.cn-shenzhen.aliyuncs.com/handsfree/node:16-alpine
|
2023-05-26 02:54:30 +00:00
|
|
|
RUN npm install -g cross-env --registry=https://registry.npmmirror.com
|
2023-05-25 12:44:41 +00:00
|
|
|
ADD ./workspace/certd-server/ /app/
|
2023-05-25 07:17:58 +00:00
|
|
|
WORKDIR /app/
|
2023-05-26 01:09:57 +00:00
|
|
|
RUN yarn install -P --registry=https://registry.npmmirror.com
|
2023-05-26 04:33:03 +00:00
|
|
|
CMD ["node","./bootstrap.js"]
|
|
|
|
|
|
|
|
|
2023-05-25 07:17:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
|