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.
This commit is contained in:
Brian Cunnie
2021-02-28 19:49:52 -08:00
committed by Brian Cunnie
parent 4ed10c4408
commit 947b47c8c5

View File

@@ -24,7 +24,8 @@ FROM alpine AS sslip.io
LABEL maintainer="brian.cunnie@gmail.com" 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; \ 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"] ENTRYPOINT ["/usr/sbin/sslip.io-dns-server"]