unbound/Dockerfile

19 lines
237 B
Docker
Raw Normal View History

2021-09-28 12:11:58 +02:00
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" ]