isearch/dockerfiles/Dockerfile

9 lines
161 B
Docker
Raw Normal View History

2021-09-14 17:54:31 +08:00
FROM intelligentsearch/isearch_env:2.0
COPY install.sh /root/install.sh
2021-09-15 11:49:25 +08:00
COPY start.sh /root/start.sh
2021-09-14 17:54:31 +08:00
RUN /root/install.sh
2021-09-15 11:49:25 +08:00
CMD ["/bin/bash", "/root/start.sh"]
2021-09-14 17:54:31 +08:00