docker-pdns/pdns-recursor/Dockerfile.alpine
dependabot[bot] 44e91ec740 Bump alpine from 3.17.1 to 3.17.2 in /pdns-recursor
Bumps alpine from 3.17.1 to 3.17.2.

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

Signed-off-by: dependabot[bot] <support@github.com>
2023-03-01 15:51:53 +01:00

27 lines
537 B
Docker

FROM alpine:3.17.2
RUN apk add --no-cache \
pdns-recursor \
py3-pip \
python3
RUN pip3 install --no-cache-dir 'Jinja2<3.1' envtpl
RUN mkdir -p /etc/pdns/api.d \
&& chown -R recursor: /etc/pdns/api.d \
&& mkdir -p /var/run/pdns-recursor \
&& chown -R recursor: /var/run/pdns-recursor
ENV VERSION=4.7 \
PDNS_setuid=recursor \
PDNS_setgid=recursor \
PDNS_daemon=no
EXPOSE 53 53/udp
COPY recursor.conf.tpl /
COPY docker-entrypoint.sh /
ENTRYPOINT [ "/docker-entrypoint.sh" ]
CMD [ "/usr/sbin/pdns_recursor" ]