mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-06-06 08:11:54 +00:00
13 lines
235 B
Docker
13 lines
235 B
Docker
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"]
|