docker-pdns/pdns/Dockerfile.alpine

27 lines
441 B
Docker
Raw Normal View History

FROM alpine:3.17.1
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
RUN pip3 install --no-cache-dir 'Jinja2<3.1' envtpl
ENV VERSION=4.7 \
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" ]