123456789101112131415161718192021222324 |
- FROM registry.c2cloud.cn/unicom/tomcat8:dev8.5.81-jdk8
- MAINTAINER ZORRO <yaoshun.chen@chinacreator.com>
- #ENV LANG=en_US.UTF-8
- RUN mkdir -p /data/
- RUN mkdir -p /opt/
- # CI会在编译Docker镜像之前把编译产物拷贝到target目录下
- #ADD * /usr/local/openresty/
- ADD activeprocess/ /opt/tomcat/webapps/activeprocess/
- RUN chmod 777 /opt
- #WORKDIR /opt/tomcat/webapps/activeprocess
- WORKDIR /opt/tomcat/webapps/activeprocess
- RUN echo "export TZ='CST-8'" >> /etc/profile
- # Launch Tomcat
- # CMD ["/bin/sh","/opt/tomcat/webapps/activeprocess/activity.sh"]
- CMD ["/bin/sh","/opt/tomcat/webapps/activeprocess/activity.sh"]
|