certd/packages/ui/certd-server/Dockerfile

13 lines
306 B
Docker
Raw Normal View History

2023-01-29 05:44:19 +00:00
FROM registry.cn-shenzhen.aliyuncs.com/greper/node:15.8.0-alpine
WORKDIR /home
COPY . .
# 如果各公司有自己的私有源可以替换registry地址
#RUN npm install --registry=https://registry.npmmirror.com
RUN npm install -g cnpm
RUN cnpm install
2023-06-26 04:26:59 +00:00
RUN npm run build
2023-01-29 05:44:19 +00:00
2023-06-26 04:26:59 +00:00
CMD ["npm", "run", "online"]