| 123456789101112131415161718192021 | FROM alpine:3.6LABEL maintainer "Andre Peters <andre.peters@servercow.de>"RUN apk add --update --no-cache \	curl \	unbound \	bash \	openssl \	drill \	&& curl -o /etc/unbound/root.hints https://www.internic.net/domain/named.cache \	&& chown root:unbound /etc/unbound \	&& chmod 775 /etc/unboundCOPY unbound.conf /etc/unbound/unbound.confEXPOSE 53/udp 53/tcpCOPY docker-entrypoint.sh /docker-entrypoint.shENTRYPOINT ["/docker-entrypoint.sh"]
 |