unboundnsd/unbound/Dockerfile

8 lines
172 B
Text
Raw Permalink Normal View History

2016-09-18 12:11:55 +00:00
FROM alpine:3.4
RUN apk --no-cache add unbound &&\
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 entrypoint.sh /
2016-09-18 12:11:55 +00:00
EXPOSE 53
2016-09-18 23:24:20 +00:00
CMD ["/entrypoint.sh", "-d"]