Dockerfile.bak 446 B

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