docker/healthcheck/Dockerfile

12 lines
212 B
Docker
Raw Normal View History

2019-06-06 11:46:36 +08:00
FROM python
2017-06-22 19:46:43 +08:00
MAINTAINER kennylee26 <kennylee26@gmail.com>
COPY docker-entrypoint.py /
COPY heath_check.py /
COPY network_tool.py /
COPY entrypoint.sh /
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]