This commit is contained in:
root
2025-09-02 13:17:50 +03:00
commit 3a9c6a8b5a
2 changed files with 14 additions and 0 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM alpine:latest
RUN apk add --no-cache unbound
COPY unbound.conf /etc/unbound/unbound.conf
WORKDIR /etc/unbound/
EXPOSE 53
EXPOSE 53/udp
CMD ["unbound", "-c", "/etc/unbound/unbound.conf", "-d"]