]> git.ipfire.org Git - thirdparty/pdns.git/blame - Dockerfile-recursor
dnsdist: syslog should be enabled by default
[thirdparty/pdns.git] / Dockerfile-recursor
CommitLineData
c0e0545b
PD
1# USAGE
2
3# docker build --build-arg MAKEFLAGS=-j8 -t recursor -f docker/Dockerfile-recursor .
4# docker run -p 1053:53 -p 1053:53/udp -ti --rm recursor
5# dig a www.example.com @0 -p 1053
6
7# Builder
a0d3acff 8FROM debian:11-slim AS builder
c0e0545b 9
1e9b17d7 10ENV NO_LUA_JIT="s390x arm64"
c1a8e298 11
c0e0545b
PD
12# Reusable layer for base update
13RUN apt-get update && apt-get -y dist-upgrade && apt-get clean
14
15# devscripts gives us mk-build-deps (and a lot of other stuff)
4ccb0f78 16RUN apt-get install -y --no-install-recommends devscripts equivs git curl jq && apt-get clean
c0e0545b 17
d2a1e0c6 18COPY builder-support /source/builder-support
c0e0545b
PD
19
20# TODO: control file is not in tarballs at all right now
21RUN mk-build-deps -i -t 'apt-get -y -o Debug::pkgProblemResolver=yes --no-install-recommends' /source/builder-support/debian/recursor/debian-buster/control && \
22 apt-get clean
c0e0545b 23
d2a1e0c6
PL
24COPY pdns /source/pdns
25COPY build-aux /source/build-aux
26COPY m4 /source/m4
27COPY ext /source/ext
28COPY .git /source/.git
ff6b244a 29COPY builder/helpers/set-configure-ac-version.sh /usr/local/bin
d2a1e0c6 30
30ef2a39 31COPY builder-support/helpers/install_rust.sh /source/install_rust.sh
4ccb0f78
RG
32COPY builder-support/helpers/rust.json /source/rust.json
33RUN cd /source/ && ./install_rust.sh
30ef2a39 34
c0e0545b
PD
35# build and install (TODO: before we hit this line, rearrange /source structure if we are coming from a tarball)
36WORKDIR /source/pdns/recursordist
37
38ARG MAKEFLAGS=
39ENV MAKEFLAGS ${MAKEFLAGS:--j2}
40
ff6b244a
PL
41ARG DOCKER_FAKE_RELEASE=NO
42ENV DOCKER_FAKE_RELEASE ${DOCKER_FAKE_RELEASE}
43
c0e0545b 44# Manpage deps
98508251 45# RUN apt-get install -y python3-venv && apt-get clean
c0e0545b
PD
46
47# Manpage prevent
48RUN touch pdns_recursor.1 rec_control.1 # avoid installing pandoc
49
ff6b244a 50RUN if [ "${DOCKER_FAKE_RELEASE}" = "YES" ]; then \
a508963d 51 BUILDER_VERSION="$(IS_RELEASE=YES BUILDER_MODULES=recursor ./builder-support/gen-version | sed 's/\([0-9]\+\.[0-9]\+\.[0-9]\+\(\(alpha|beta|rc\)\d\+\)\)?.*/\1/')" set-configure-ac-version.sh;\
ff6b244a
PL
52 fi && \
53 BUILDER_MODULES=recursor autoreconf -vfi
c0e0545b
PD
54
55RUN mkdir /build && \
1e9b17d7 56 LUAVER=$([ -z "${NO_LUA_JIT##*$(dpkg --print-architecture)*}" ] && echo 'lua5.3' || echo 'luajit') && \
64d4a9d9
JC
57 ./configure \
58 --with-lua=${LUAVER} \
c0e0545b
PD
59 LDFLAGS=-rdynamic \
60 --sysconfdir=/etc/powerdns \
61 --enable-option-checking=fatal && \
62 make clean && \
63 make $MAKEFLAGS install DESTDIR=/build && make clean && \
64 strip /build/usr/local/bin/* /build/usr/local/sbin/*
65RUN cd /tmp && mkdir /build/tmp/ && mkdir debian && \
7b968335 66 echo 'Source: docker-deps-for-pdns' > debian/control && \
c0e0545b
PD
67 dpkg-shlibdeps /build/usr/local/bin/rec_control /build/usr/local/sbin/pdns_recursor && \
68 sed 's/^shlibs:Depends=/Depends: /' debian/substvars >> debian/control && \
69 equivs-build debian/control && \
70 dpkg-deb -I equivs-dummy_1.0_all.deb && cp equivs-dummy_1.0_all.deb /build/tmp/
71
72# Runtime
a0d3acff 73FROM debian:11-slim
c0e0545b
PD
74
75# Reusable layer for base update - Should be cached from builder
76RUN apt-get update && apt-get -y dist-upgrade && apt-get clean
77
6c1e69e0
PL
78# Ensure python3 and jinja2 is present (for startup script), and tini for signal management
79RUN apt-get install -y python3 python3-jinja2 tini libcap2-bin && apt-get clean
c0e0545b
PD
80
81# Executables from builder
82COPY --from=builder /build /
83RUN chmod 1777 /tmp # FIXME: better not use /build/tmp for equivs at all
c0e0545b
PD
84
85# Ensure dependencies are present
2e209af7 86RUN apt-get install -y /tmp/equivs-dummy_1.0_all.deb && apt-get clean
c0e0545b
PD
87
88# Start script
89COPY dockerdata/startup.py /usr/local/sbin/pdns_recursor-startup
90
91# Config file(s) from builder
d2a1e0c6 92COPY dockerdata/recursor.conf /etc/powerdns/
c0e0545b
PD
93
94# Is recursor.d necessary if we copy the config into recursor.conf? (see above)
6c1e69e0 95RUN mkdir -p /etc/powerdns/recursor.d /var/run/pdns-recursor /etc/powerdns/templates.d
c0e0545b
PD
96
97# Work with pdns user - not root
98RUN adduser --system --disabled-password --disabled-login --no-create-home --group pdns --uid 953
6c1e69e0 99RUN chown pdns:pdns /var/run/pdns-recursor /etc/powerdns/recursor.d /etc/powerdns/templates.d
c0e0545b
PD
100USER pdns
101
f28c81ed 102# Default DNS ports
c0e0545b
PD
103EXPOSE 53/udp
104EXPOSE 53/tcp
105
f28c81ed 106# Default webserver port
c0e0545b
PD
107EXPOSE 8082/tcp
108
109ENTRYPOINT ["/usr/bin/tini", "--", "/usr/local/sbin/pdns_recursor-startup"]