docker-pdns/pdns/Dockerfile.alpine
Peter Schiffer d4c9a2fce5
Update alpine images to 3.11
This also updates the pdns to version 4.2
2020-01-03 17:53:35 +01:00

25 lines
412 B
Docker

FROM alpine:3.11
RUN apk add --no-cache \
pdns \
pdns-backend-mysql \
pdns-doc \
python3 \
mariadb-client
RUN pip3 install --no-cache-dir envtpl
ENV VERSION=4.2 \
PDNS_guardian=yes \
PDNS_setuid=pdns \
PDNS_setgid=pdns \
PDNS_launch=gmysql
EXPOSE 53 53/udp
COPY pdns.conf.tpl /
COPY docker-entrypoint.sh /
ENTRYPOINT [ "/docker-entrypoint.sh" ]
CMD [ "/usr/sbin/pdns_server" ]