Dockerfiles/zabbix-agent/normal/Dockerfile

13 lines
235 B
Docker
Raw Normal View History

2019-05-06 11:43:28 +00:00
FROM ubuntu:18.04
MAINTAINER Newnius <newnius.cn@gmail.com>
# Prerequisites
RUN apt update && \
apt install -y lm-sensors zabbix-agent && \
rm -rf /var/lib/apt/lists/*
ADD bootstrap.sh /etc/bootstrap.sh
CMD ["/etc/bootstrap.sh"]