7 lines
172 B
Docker
7 lines
172 B
Docker
FROM alpine:3.4
|
|
RUN apk --no-cache add unbound &&\
|
|
unbound-anchor
|
|
COPY unbound.conf /etc/unbound/unbound.conf
|
|
COPY entrypoint.sh /
|
|
EXPOSE 53
|
|
CMD ["/entrypoint.sh", "-d"]
|