2016-09-18 12:11:55 +00:00
|
|
|
FROM alpine:3.4
|
2016-09-19 12:49:10 +00:00
|
|
|
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"]
|