mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-29 18:48:45 +08:00
14 lines
138 B
Docker
14 lines
138 B
Docker
|
FROM node:12
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
RUN npm i \
|
||
|
&& ./node_modules/.bin/fis3 release -cd ./public
|
||
|
|
||
|
EXPOSE 8888
|
||
|
|
||
|
CMD ["npm", "start"]
|
||
|
|