| 123456789101112131415161718 | 
							- FROM hub.evbj.easou.com/dev/tomcat7:latest
 
- 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
 
- #start tomcat
 
- ENTRYPOINT ["entrypoint.sh"]
 
- CMD ["supervisord"]
 
 
  |