19 lines
237 B
Docker
19 lines
237 B
Docker
|
FROM alpine:3.13
|
||
|
|
||
|
RUN \
|
||
|
apk add --no-cache unbound && \
|
||
|
mv /etc/unbound/unbound.conf /etc/unbound/unbound.conf-dist
|
||
|
|
||
|
COPY unbound.conf /etc/unbound/unbound.conf
|
||
|
|
||
|
EXPOSE 53/udp
|
||
|
|
||
|
VOLUME /etc/unbound
|
||
|
|
||
|
CMD [ "/usr/sbin/unbound" ]
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|