pdns/Dockerfile
2022-10-09 14:43:25 +02:00

13 lines
303 B
Docker

FROM alpine:latest
RUN apk update && apk add --no-cache pdns-backend-pgsql && rm -rf /var/cache/apk/*
RUN sed -i 's/^use-logfile=/#use-logfile=/' /etc/pdns/pdns.conf && \
sed -i 's/^wildcards=/#wildcards=/' /etc/pdns/pdns.conf
COPY start.sh /
RUN chmod a+x /start.sh
EXPOSE 53/udp
CMD /start.sh