Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Dockerfile 383B

12345678910111213141516171819
  1. FROM robinthoni/debian-multiarch: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"]