unboundnsd/unbound/Dockerfile

9 lines
222 B
Text
Raw Normal View History

2016-09-18 12:11:55 +00:00
FROM alpine:3.4
2016-09-18 23:24:20 +00:00
RUN apk --no-cache add unbound perl &&\
2016-09-18 12:11:55 +00:00
unbound-anchor
COPY unbound.conf /etc/unbound/unbound.conf
2016-09-18 23:24:20 +00:00
COPY build-unbound-localzone-from-hosts.pl /
COPY entrypoint.sh /
2016-09-18 12:11:55 +00:00
EXPOSE 53
2016-09-18 23:24:20 +00:00
CMD ["/entrypoint.sh", "-d"]