FROM python:2.7@sha256:cfa62318c459b1fde9e0841c619906d15ada5910d625176e24bf692cf8a2601d ENV ZBX_API_URL=http://zabbix-web:8080 ENV ZBX_API_USER="Admin" ENV ZBX_API_PASSWORD="zabbix" ENV ZBX_CONFIG="zbx_export_hosts.xml" ENV ZBX_BOOTSTRAP_SCRIPT="bootstrap_config.py" RUN pip install pyzabbix ADD ./bootstrap_config.py /bootstrap_config.py ADD ${ZBX_CONFIG} /${ZBX_CONFIG} WORKDIR / # Run bootstrap_config.py when the container launches CMD ["python", "/bootstrap_config.py"]