22 lines
359 B
Docker
22 lines
359 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk add \
|
|
bash \
|
|
bind-tools \
|
|
execline \
|
|
nano \
|
|
nano-syntax \
|
|
nsd \
|
|
openssl \
|
|
s6-overlay \
|
|
unbound \
|
|
vim
|
|
|
|
COPY etc/unbound/unbound.conf /etc/unbound
|
|
COPY etc/nsd/nsd.conf /etc/nsd/nsd.conf
|
|
COPY zones /etc/nsd/zones
|
|
|
|
COPY etc/s6-overlay /etc/s6-overlay
|
|
|
|
ENTRYPOINT ["/init"]
|