mirror of
https://github.com/cool-team-official/cool-admin-midway.git
synced 2025-12-27 20:10:16 +00:00
15 lines
221 B
Docker
15 lines
221 B
Docker
FROM node:12
|
||
|
||
WORKDIR /home
|
||
|
||
COPY . .
|
||
|
||
# 如果各公司有自己的私有源,可以替换registry地址
|
||
RUN yarn
|
||
|
||
RUN yarn build
|
||
|
||
# 如果端口更换,这边可以更新一下
|
||
EXPOSE 8001
|
||
|
||
CMD ["npm", "run", "start"] |