You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Dockerfile 385B

1234567891011121314151617
  1. FROM debian:stretch
  2. ADD https://raw.githubusercontent.com/robin-thoni/docker-utils/v1.3.0/setup.sh /tmp/docker-utils-setup.sh
  3. RUN sh /tmp/docker-utils-setup.sh
  4. ENTRYPOINT ["gcf-entrypoint"]
  5. RUN pkgs-install\
  6. bind9\
  7. dnsutils\
  8. bind9utils
  9. COPY ./config /etc/salt/base/
  10. EXPOSE 53/udp 53/tcp
  11. #CMD ["named-checkconf", "-z"]
  12. CMD ["named", "-f", "-d", "10", "-4"]