docker-pdns/pdns/Dockerfile.alpine
dependabot[bot] 5f4492e805
Bump alpine from 3.13 to 3.14.2 in /pdns (#57)
Bumps alpine from 3.13 to 3.14.2.

---
updated-dependencies:
- dependency-name: alpine
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-10-05 22:28:59 +02:00

26 lines
428 B
Docker

FROM alpine:3.14.2
RUN apk add --no-cache \
mariadb-client \
pdns \
pdns-backend-mysql \
pdns-doc \
py3-pip \
python3
RUN pip3 install --no-cache-dir envtpl
ENV VERSION=4.3 \
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" ]