add watchdog image

This commit is contained in:
2020-08-28 14:48:19 +02:00
parent 58d7a2f9e2
commit a748e1f225
5 changed files with 43 additions and 1 deletions

8
watchdog/Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM debian:buster-20200803-slim
ARG DEBIAN_FRONTEND=noninteractive
ARG VERSION
RUN apt update -qq && \
apt install -qqy --no-install-recommends watchdog=$VERSION && \
rm -rf /var/lib/apt/lists/*
ENTRYPOINT ["/usr/sbin/watchdog", "-F"]