Dockerfile 395 B

12345678910111213141516171819202122
  1. FROM alpine:3.6
  2. LABEL maintainer "André Peters <andre.peters@servercow.de>"
  3. # Installation
  4. RUN apk add --update \
  5. && apk add --no-cache nagios-plugins-smtp \
  6. nagios-plugins-tcp \
  7. nagios-plugins-http \
  8. nagios-plugins-ping \
  9. curl \
  10. bash \
  11. jq \
  12. fcgi \
  13. nagios-plugins-mysql \
  14. nagios-plugins-dns \
  15. bind-tools
  16. COPY watchdog.sh /watchdog.sh
  17. # Less verbose
  18. CMD /watchdog.sh 2> /dev/null