From 947b47c8c5e0c1aa1628356069f1ff8994ba36de Mon Sep 17 00:00:00 2001 From: Brian Cunnie Date: Sun, 28 Feb 2021 19:49:52 -0800 Subject: [PATCH] Dockerfile: sslip.io has `dig` to allow probes It increases the size of the image from 8MB to 26MB, but in the grand scheme of things that's not much space. --- k8s/Dockerfile-sslip.io-dns-server | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/k8s/Dockerfile-sslip.io-dns-server b/k8s/Dockerfile-sslip.io-dns-server index 76e7245..756f07a 100644 --- a/k8s/Dockerfile-sslip.io-dns-server +++ b/k8s/Dockerfile-sslip.io-dns-server @@ -24,7 +24,8 @@ FROM alpine AS sslip.io LABEL maintainer="brian.cunnie@gmail.com" RUN wget https://github.com/cunnie/sslip.io/releases/download/2.1.2/sslip.io-dns-server-linux-amd64 -O /usr/sbin/sslip.io-dns-server; \ - chmod 755 /usr/sbin/sslip.io-dns-server + chmod 755 /usr/sbin/sslip.io-dns-server; \ + apk update && apk add bind-tools ENTRYPOINT ["/usr/sbin/sslip.io-dns-server"]