cool-admin-midway/Dockerfile
2021-02-28 00:42:45 +08:00

15 lines
221 B
Docker
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

FROM node:12
WORKDIR /home
COPY . .
# 如果各公司有自己的私有源可以替换registry地址
RUN yarn
RUN yarn build
# 如果端口更换,这边可以更新一下
EXPOSE 8001
CMD ["npm", "run", "start"]