You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 

16 lines
385 B

FROM ubuntu:20.04
RUN apt-get -q update && \
apt-get install -y --no-install-recommends smartmontools && \
apt-get clean && \
rm -rf /tmp/* && \
rm -rf /var/lib/apt/lists/* && \
rm -rf /var/tmp/*
ADD script/entrypoint.sh /entrypoint.sh
ADD script/smartmon.sh /smartmon.sh
RUN chmod +x /entrypoint.sh && \
chmod +x /smartmon.sh
ENTRYPOINT ["/entrypoint.sh"]