1234567891011121314151617 |
- FROM hub.evbj.easou.com/bi/esa:2.0
- LABEL author="robert_du[robert_du@easou.cn]"
- ENV LANG en_US.UTF-8
- ENV TZ=Asia/Shanghai
- ENV JAVA_HOME /usr/java/jdk1.8.0_271
- ENV TOMCAT_HOME /opt/tomcat-7.0.105
- COPY entrypoint.sh /usr/bin/entrypoint.sh
- COPY tomcat.ini /etc/supervisord.d/tomcat.ini
- RUN chmod +x /usr/bin/entrypoint.sh \
- && sed -i 's/nodaemon=false/nodaemon=true/g' /etc/supervisord.conf
- ENTRYPOINT ["entrypoint.sh"]
- CMD ["supervisord"]
|