mirror of
https://github.com/certd/certd.git
synced 2026-04-14 12:30:54 +08:00
12 lines
284 B
Docker
12 lines
284 B
Docker
FROM registry.cn-shenzhen.aliyuncs.com/handsfree/node:16-alpine
|
|
RUN npm install -g cross-env --registry=https://registry.npmmirror.com
|
|
ADD ./workspace/certd-server/ /app/
|
|
WORKDIR /app/
|
|
RUN yarn install -P --registry=https://registry.npmmirror.com
|
|
CMD ["node","./bootstrap.js"]
|
|
|
|
|
|
|
|
|
|
|