1
1
Fork 0
mirror of https://github.com/dnscrypt/dnscrypt-server-docker synced 2024-06-02 06:36:21 +02:00
dnscrypt-server-docker/Dockerfile

85 lines
3.3 KiB
Docker
Raw Normal View History

2021-10-15 19:43:54 +02:00
FROM ubuntu:21.10
LABEL maintainer="Frank Denis"
SHELL ["/bin/sh", "-x", "-c"]
ENV SERIAL 6
2015-07-06 01:39:54 +02:00
ENV CFLAGS=-Ofast
ENV BUILD_DEPS curl make build-essential git libevent-dev libexpat1-dev autoconf file libssl-dev byacc
2019-09-25 22:50:53 +02:00
ENV RUNTIME_DEPS bash util-linux coreutils findutils grep libssl1.1 ldnsutils libevent-2.1 expat ca-certificates runit runit-helper jed
2015-07-06 01:39:54 +02:00
RUN apt-get update && apt-get -qy dist-upgrade && apt-get -qy clean && \
2019-09-25 11:16:12 +02:00
apt-get install -qy --no-install-recommends $RUNTIME_DEPS && \
rm -fr /tmp/* /var/tmp/* /var/cache/apt/* /var/lib/apt/lists/* /var/log/apt/* /var/log/*.log
RUN update-ca-certificates 2> /dev/null || true
2015-07-06 01:39:54 +02:00
ENV UNBOUND_GIT_URL https://github.com/NLnetLabs/unbound.git
2021-08-12 18:21:28 +02:00
ENV UNBOUND_GIT_REVISION fdae4cdbbb132296b3b8654a0747d61ddb6b4a25
2015-07-06 01:39:54 +02:00
WORKDIR /tmp
RUN apt-get update && apt-get install -qy --no-install-recommends $BUILD_DEPS && \
git clone --depth=1000 "$UNBOUND_GIT_URL" && \
2019-02-05 18:12:37 +01:00
cd unbound && \
2019-02-05 18:50:10 +01:00
git checkout "$UNBOUND_GIT_REVISION" && \
2015-07-06 01:39:54 +02:00
groupadd _unbound && \
useradd -g _unbound -s /etc -d /dev/null _unbound && \
2017-04-19 10:56:02 +02:00
./configure --prefix=/opt/unbound --with-pthreads \
--with-username=_unbound --with-libevent && \
make -j"$(getconf _NPROCESSORS_ONLN)" install && \
2015-07-06 01:39:54 +02:00
mv /opt/unbound/etc/unbound/unbound.conf /opt/unbound/etc/unbound/unbound.conf.example && \
2019-09-22 17:46:46 +02:00
apt-get -qy purge $BUILD_DEPS && apt-get -qy autoremove && \
2015-07-06 01:39:54 +02:00
rm -fr /opt/unbound/share/man && \
rm -fr /tmp/* /var/tmp/* /var/cache/apt/* /var/lib/apt/lists/* /var/log/apt/* /var/log/*.log
2015-07-06 01:39:54 +02:00
ENV RUSTFLAGS "-C link-arg=-s"
2015-07-06 01:39:54 +02:00
2019-09-25 11:29:02 +02:00
RUN apt-get update && apt-get install -qy --no-install-recommends $BUILD_DEPS && \
curl -sSf https://sh.rustup.rs | bash -s -- -y --default-toolchain stable && \
export PATH="$HOME/.cargo/bin:$PATH" && \
2021-02-09 22:33:47 +01:00
echo "Compiling encrypted-dns version 0.3.23" && \
cargo install encrypted-dns && \
mkdir -p /opt/encrypted-dns/sbin && \
mv ~/.cargo/bin/encrypted-dns /opt/encrypted-dns/sbin/ && \
strip --strip-all /opt/encrypted-dns/sbin/encrypted-dns && \
2019-09-22 17:46:46 +02:00
apt-get -qy purge $BUILD_DEPS && apt-get -qy autoremove && \
rm -fr ~/.cargo ~/.rustup && \
rm -fr /tmp/* /var/tmp/* /var/cache/apt/* /var/lib/apt/lists/* /var/log/apt/* /var/log/*.log
2015-07-06 01:39:54 +02:00
RUN groupadd _encrypted-dns && \
mkdir -p /opt/encrypted-dns/empty && \
useradd -g _encrypted-dns -s /etc -d /opt/encrypted-dns/empty _encrypted-dns && \
mkdir -m 700 -p /opt/encrypted-dns/etc/keys && \
2019-09-26 20:57:57 +02:00
mkdir -m 700 -p /opt/encrypted-dns/etc/lists && \
chown _encrypted-dns:_encrypted-dns /opt/encrypted-dns/etc/keys && \
mkdir -m 700 -p /opt/dnscrypt-wrapper/etc/keys && \
2019-09-26 20:57:57 +02:00
mkdir -m 700 -p /opt/dnscrypt-wrapper/etc/lists && \
chown _encrypted-dns:_encrypted-dns /opt/dnscrypt-wrapper/etc/keys
2015-07-06 01:39:54 +02:00
RUN mkdir -p \
/var/svc/unbound \
/var/svc/encrypted-dns \
/var/svc/watchdog
2015-07-06 01:39:54 +02:00
COPY encrypted-dns.toml.in /opt/encrypted-dns/etc/
2019-12-11 16:20:55 +01:00
COPY undelegated.txt /opt/encrypted-dns/etc/
2015-07-08 00:19:02 +02:00
COPY entrypoint.sh /
2015-07-06 01:39:54 +02:00
COPY unbound.sh /var/svc/unbound/run
COPY unbound-check.sh /var/svc/unbound/check
2015-07-06 01:39:54 +02:00
COPY encrypted-dns.sh /var/svc/encrypted-dns/run
2015-07-06 01:39:54 +02:00
COPY watchdog.sh /var/svc/watchdog/run
2015-07-06 01:39:54 +02:00
RUN ln -sf /opt/encrypted-dns/etc/keys/encrypted-dns.toml /opt/encrypted-dns/etc/encrypted-dns.toml
VOLUME ["/opt/encrypted-dns/etc/keys"]
2015-07-06 01:39:54 +02:00
EXPOSE 443/udp 443/tcp 9100/tcp
2015-07-06 01:39:54 +02:00
2019-09-23 19:40:44 +02:00
CMD ["/entrypoint.sh", "start"]
2015-07-06 01:39:54 +02:00
ENTRYPOINT ["/entrypoint.sh"]