2017-04-19 10:56:02 +02:00
|
|
|
FROM jedisct1/alpine-runit:latest
|
2019-09-22 15:38:22 +02:00
|
|
|
LABEL maintainer="Frank Denis"
|
2019-08-05 17:44:31 +02:00
|
|
|
SHELL ["/bin/sh", "-x", "-c"]
|
2019-06-10 12:26:26 +02:00
|
|
|
ENV SERIAL 3
|
2015-07-06 01:39:54 +02:00
|
|
|
|
2019-08-05 18:00:22 +02:00
|
|
|
ENV CFLAGS=-Ofast
|
2019-09-22 15:38:22 +02:00
|
|
|
ENV BUILD_DEPS curl make gcc musl-dev git libevent-dev expat-dev shadow autoconf file openssl-dev byacc linux-headers
|
2019-03-10 18:41:18 +01:00
|
|
|
ENV RUNTIME_DEPS bash util-linux coreutils findutils grep openssl ldns ldns-tools libevent expat libexecinfo coreutils drill ca-certificates
|
2015-07-06 01:39:54 +02:00
|
|
|
|
2019-08-05 18:31:00 +02:00
|
|
|
RUN apk --no-cache upgrade && apk add --no-cache $RUNTIME_DEPS
|
|
|
|
RUN update-ca-certificates 2> /dev/null || true
|
2015-07-06 01:39:54 +02:00
|
|
|
|
2019-02-05 18:12:37 +01:00
|
|
|
ENV UNBOUND_GIT_URL https://github.com/jedisct1/unbound.git
|
2019-09-22 15:38:22 +02:00
|
|
|
ENV UNBOUND_GIT_REVISION 35ac577d99d56869f2f87dcc7b5e36b8996df5ca
|
2015-07-06 01:39:54 +02:00
|
|
|
|
2019-08-05 17:56:18 +02:00
|
|
|
WORKDIR /tmp
|
|
|
|
|
2019-08-05 17:44:31 +02:00
|
|
|
RUN apk add --no-cache $BUILD_DEPS && \
|
2019-05-03 17:17:10 +02:00
|
|
|
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 \
|
2018-01-22 15:52:52 +01:00
|
|
|
--with-username=_unbound --with-libevent --enable-event-api && \
|
2019-08-05 17:38:12 +02:00
|
|
|
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-05-03 17:43:10 +02:00
|
|
|
apk del --purge $BUILD_DEPS && \
|
2015-07-06 01:39:54 +02:00
|
|
|
rm -fr /opt/unbound/share/man && \
|
|
|
|
rm -fr /tmp/* /var/tmp/*
|
|
|
|
|
2019-09-22 15:38:22 +02:00
|
|
|
ENV RUSTFLAGS "-C target-feature=-crt-static -C link-arg=-s"
|
2015-07-06 01:39:54 +02:00
|
|
|
|
2019-08-05 17:44:31 +02:00
|
|
|
RUN apk add --no-cache $BUILD_DEPS && \
|
2019-09-22 15:38:22 +02:00
|
|
|
curl -sSf https://sh.rustup.rs | bash -s -- -y --default-toolchain nightly
|
|
|
|
|
|
|
|
RUN source $HOME/.cargo/env && \
|
|
|
|
cargo install encrypted-dns && \
|
|
|
|
mkdir -p /opt/encrypted-dns/sbin && \
|
|
|
|
mkdir -p /opt/encrypted-dns/etc/keys && \
|
|
|
|
mv ~/.cargo/bin/encrypted-dns /opt/encrypted-dns/sbin/ && \
|
|
|
|
strip --strip-all /opt/encrypted-dns/sbin/encrypted-dns && \
|
|
|
|
groupadd _encrypted-dns && \
|
|
|
|
useradd -g _encrypted-dns -s /etc -d /opt/encrypted-dns/empty _encrypted-dns && \
|
|
|
|
chown _encrypted-dns:_encrypted-dns /opt/encrypted-dns/etc/keys && \
|
|
|
|
chmod 700 /opt/encrypted-dns/etc/keys && \
|
2019-05-03 17:43:10 +02:00
|
|
|
apk del --purge $BUILD_DEPS && \
|
2019-09-22 15:38:22 +02:00
|
|
|
rm -fr ~/.cargo ~/.rustup && \
|
2015-07-06 01:39:54 +02:00
|
|
|
rm -fr /tmp/* /var/tmp/*
|
|
|
|
|
|
|
|
RUN mkdir -p \
|
|
|
|
/etc/service/unbound \
|
|
|
|
/etc/service/watchdog
|
|
|
|
|
2019-09-22 15:38:22 +02:00
|
|
|
COPY encrypted-dns.toml.in /opt/encrypted-dns/etc/
|
|
|
|
|
2015-07-08 00:19:02 +02:00
|
|
|
COPY entrypoint.sh /
|
2015-07-06 01:39:54 +02:00
|
|
|
|
2015-07-08 00:19:02 +02:00
|
|
|
COPY unbound.sh /etc/service/unbound/run
|
|
|
|
COPY unbound-check.sh /etc/service/unbound/check
|
2015-07-06 01:39:54 +02:00
|
|
|
|
2019-09-22 15:38:22 +02:00
|
|
|
COPY encrypted-dns.sh /etc/service/encrypted-dns/run
|
2015-07-06 01:39:54 +02:00
|
|
|
|
2015-07-08 00:19:02 +02:00
|
|
|
COPY watchdog.sh /etc/service/watchdog/run
|
2015-07-06 01:39:54 +02:00
|
|
|
|
2019-09-22 15:38:22 +02:00
|
|
|
VOLUME ["/opt/encrypted-dns/etc/keys"]
|
2015-07-06 01:39:54 +02:00
|
|
|
|
2015-11-28 13:52:35 +01:00
|
|
|
EXPOSE 443/udp 443/tcp
|
2015-07-06 01:39:54 +02:00
|
|
|
|
2017-04-19 10:56:02 +02:00
|
|
|
CMD ["/sbin/start_runit"]
|
2015-07-06 01:39:54 +02:00
|
|
|
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|