123456789101112131415161718192021222324 |
- FROM hub.evbj.easou.com/dev/centos68-resin:3.1.16-jdk7
- MAINTAINER scofield[scofield_shi@easou.cn]
- COPY release /etc/release
- COPY resin.conf /app/soft/resin-pro-3.1.16/conf/resin.conf
- COPY entrypoint.sh /usr/bin/entrypoint.sh
- COPY rsyncd.wapage /etc/rsyncd.wapage
- COPY release /etc/release
- RUN yum install -y rsync \
- && && useradd book \
- && yum install -y wget rsync epel-release \
- && yum install -y vixie-cron \
- && yum install -y supervisor \
- && curl -O http://10.26.22.185:9000/psop/soft/misc.tar.gz \
- && mkdir /app/wapage -p \
- && tar zxf misc.tar.gz -C /app/wapage \
- && chmod +x /usr/bin/entrypoint.sh
- COPY supervisord.conf /etc/supervisord.conf
- #start misc
- ENTRYPOINT ["entrypoint.sh"]
- CMD ["/usr/bin/supervisord"]
|