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 362B

12345678910111213141516171819
  1. FROM debian:jessie
  2. MAINTAINER Robin Thoni <robin@rthoni.com>
  3. RUN DEBIAN_FRONTEND=noninteractive apt-get update &&\
  4. apt-get install -y pdns-recursor &&\
  5. apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
  6. RUN rm -rf /etc/powerdns/*
  7. RUN rm -rf /var/log/*
  8. COPY ./config/ /etc/powerdns/
  9. COPY ./run.sh /run.sh
  10. EXPOSE 53/udp
  11. CMD ["/run.sh"]