This repository has been archived on 2024-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
adlin/pkg/unbound/Dockerfile
Renovate Bot 5d458da103
All checks were successful
continuous-integration/drone/push Build is passing
chore(deps): update alpine docker tag to v3.17
2022-11-20 23:09:35 +00:00

16 lines
385 B
Docker

FROM alpine:3.17
MAINTAINER Pierre-Olivier Mercier <nemunaire@nemunai.re>
RUN apk add --no-cache unbound dnssec-root
COPY docker-entrypoint.sh /
VOLUME /etc/unbound
EXPOSE 53
EXPOSE 53/udp
ENTRYPOINT ["/docker-entrypoint.sh"]
CMD ["/usr/sbin/unbound", "-d"]
LABEL org.mobyproject.config='{"binds": ["/etc/resolv.conf:/etc/resolv.conf"], "capabilities": ["CAP_NET_BIND_SERVICE"]}'