This commit is contained in:
2021-09-28 12:11:58 +02:00
commit 95d41c4d4d
3 changed files with 91 additions and 0 deletions

18
Dockerfile Normal file
View File

@ -0,0 +1,18 @@
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" ]