Dockerfile 421 B

1234567891011121314151617181920212223
  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. nagios-plugins-disk \
  16. bind-tools
  17. COPY watchdog.sh /watchdog.sh
  18. # Less verbose
  19. CMD /watchdog.sh 2> /dev/null