docker-pdns/pdns/Dockerfile.alpine

27 lines
428 B
Docker
Raw Normal View History

FROM alpine:3.14.2
RUN apk add --no-cache \
2020-08-25 00:22:06 +02:00
mariadb-client \
pdns \
pdns-backend-mysql \
pdns-doc \
2020-08-25 00:22:06 +02:00
py3-pip \
python3
2018-11-07 00:50:42 +01:00
RUN pip3 install --no-cache-dir envtpl
2021-01-22 14:22:50 +01:00
ENV VERSION=4.3 \
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" ]