Dockerfile 415 B

12345678910111213141516171819
  1. FROM alpine:3.6
  2. LABEL maintainer "Andre Peters <andre.peters@servercow.de>"
  3. RUN apk add --update --no-cache \
  4. curl \
  5. unbound \
  6. bash \
  7. openssl \
  8. drill \
  9. && curl -o /etc/unbound/root.hints https://www.internic.net/domain/named.cache \
  10. && chown root:unbound /etc/unbound \
  11. && chmod 775 /etc/unbound
  12. EXPOSE 53/udp 53/tcp
  13. COPY docker-entrypoint.sh /docker-entrypoint.sh
  14. ENTRYPOINT ["/docker-entrypoint.sh"]