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.
16 lines
385 B
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"]
|