1
0
mirror of https://bitbucket.org/shim_/docker-rtm.git synced 2018-10-04 01:52:08 +02:00
docker-rtm/Dockerfile
2016-06-13 22:28:25 +02:00

18 lines
504 B
Docker

FROM ubuntu
ENV RTM_VERSION 9.4-4
ENV RTM_DOWNLOAD_URL "ftp://ftp.ovh.net/made-in-ovh/rtm/install_rtm-0."
ENV RTM_INSTALLER_CHECKSUM 16dcde3cf46f82dcacfb63535b9375c97f0cc1ba4e412c086f0f03dd8a5483ac
ENV RTM_REPORT_INTERVAL 60
RUN apt-get update && \
apt-get install -y curl sed gawk screen dmidecode pciutils bzip2 perl hddtemp bind9-host net-tools && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
COPY init.sh /usr/bin/init.sh
VOLUME /cache
CMD ["/usr/bin/init.sh"]