docker-pdns/pdns/Dockerfile.alpine

26 lines
412 B
Docker
Raw Normal View History

2019-07-12 21:09:45 +02:00
FROM alpine:3.10
RUN apk add --no-cache \
pdns \
pdns-backend-mysql \
pdns-doc \
python3 \
mariadb-client
2018-11-07 00:50:42 +01:00
RUN pip3 install --no-cache-dir envtpl
ENV VERSION=4.1 \
PDNS_guardian=yes \
PDNS_setuid=pdns \
PDNS_setgid=pdns \
PDNS_launch=gmysql
EXPOSE 53 53/udp
COPY pdns.conf.tpl /
2018-11-22 19:45:43 +01:00
COPY docker-entrypoint.sh /
2018-11-22 19:45:43 +01:00
ENTRYPOINT [ "/docker-entrypoint.sh" ]
CMD [ "/usr/sbin/pdns_server" ]