7 lines
149 B
Docker
7 lines
149 B
Docker
FROM alpine:3.12
|
|
|
|
RUN apk --update --no-cache add bind bind-dnssec-tools
|
|
EXPOSE 53
|
|
|
|
CMD ["named", "-c", "/etc/bind/named.conf", "-g", "-u", "named"]
|