2017-04-19 10:56:02 +02:00
|
|
|
FROM jedisct1/alpine-runit:latest
|
2015-07-06 01:39:54 +02:00
|
|
|
MAINTAINER Frank Denis
|
2018-09-10 15:27:30 +02:00
|
|
|
ENV SERIAL 1
|
2015-07-06 01:39:54 +02:00
|
|
|
|
2018-01-22 20:23:54 +01:00
|
|
|
ENV BUILD_DEPS make gcc musl-dev git libevent-dev expat-dev shadow autoconf file libressl-dev
|
2018-01-22 15:57:50 +01:00
|
|
|
ENV RUNTIME_DEPS bash util-linux coreutils findutils grep libressl ldns ldns-tools libevent expat libexecinfo coreutils drill
|
2015-07-06 01:39:54 +02:00
|
|
|
|
|
|
|
RUN set -x && \
|
2017-04-19 10:56:02 +02:00
|
|
|
apk --update upgrade && apk add $RUNTIME_DEPS $BUILD_DEPS
|
2015-07-06 01:39:54 +02:00
|
|
|
|
2018-12-04 13:26:55 +01:00
|
|
|
ENV UNBOUND_VERSION 1.8.2
|
|
|
|
ENV UNBOUND_SHA256 19f2235a8936d89e7dc919bbfcef355de759f220e36bb5e1e931ac000ed04993
|
2016-04-19 08:19:45 +02:00
|
|
|
ENV UNBOUND_DOWNLOAD_URL https://www.unbound.net/downloads/unbound-${UNBOUND_VERSION}.tar.gz
|
2015-07-06 01:39:54 +02:00
|
|
|
|
|
|
|
RUN set -x && \
|
|
|
|
mkdir -p /tmp/src && \
|
|
|
|
cd /tmp/src && \
|
2017-04-19 10:56:02 +02:00
|
|
|
wget -O unbound.tar.gz $UNBOUND_DOWNLOAD_URL && \
|
2015-07-06 01:39:54 +02:00
|
|
|
echo "${UNBOUND_SHA256} *unbound.tar.gz" | sha256sum -c - && \
|
|
|
|
tar xzf unbound.tar.gz && \
|
|
|
|
rm -f unbound.tar.gz && \
|
|
|
|
cd unbound-${UNBOUND_VERSION} && \
|
|
|
|
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 && \
|
2015-07-06 01:39:54 +02:00
|
|
|
make install && \
|
|
|
|
mv /opt/unbound/etc/unbound/unbound.conf /opt/unbound/etc/unbound/unbound.conf.example && \
|
|
|
|
rm -fr /opt/unbound/share/man && \
|
|
|
|
rm -fr /tmp/* /var/tmp/*
|
|
|
|
|
2017-12-13 15:50:01 +01:00
|
|
|
ENV LIBSODIUM_VERSION 1.0.16
|
|
|
|
ENV LIBSODIUM_SHA256 eeadc7e1e1bcef09680fb4837d448fbdf57224978f865ac1c16745868fbd0533
|
2015-07-06 01:39:54 +02:00
|
|
|
ENV LIBSODIUM_DOWNLOAD_URL https://download.libsodium.org/libsodium/releases/libsodium-${LIBSODIUM_VERSION}.tar.gz
|
|
|
|
|
|
|
|
RUN set -x && \
|
|
|
|
mkdir -p /tmp/src && \
|
|
|
|
cd /tmp/src && \
|
2017-04-19 10:56:02 +02:00
|
|
|
wget -O libsodium.tar.gz $LIBSODIUM_DOWNLOAD_URL && \
|
2015-07-06 01:39:54 +02:00
|
|
|
echo "${LIBSODIUM_SHA256} *libsodium.tar.gz" | sha256sum -c - && \
|
|
|
|
tar xzf libsodium.tar.gz && \
|
|
|
|
rm -f libsodium.tar.gz && \
|
|
|
|
cd libsodium-${LIBSODIUM_VERSION} && \
|
2017-04-19 10:56:02 +02:00
|
|
|
env CFLAGS=-Ofast ./configure --disable-dependency-tracking && \
|
2015-07-06 01:39:54 +02:00
|
|
|
make check && make install && \
|
2017-04-19 10:56:02 +02:00
|
|
|
ldconfig /usr/local/lib && \
|
|
|
|
rm -fr /tmp/* /var/tmp/*
|
2015-07-06 01:39:54 +02:00
|
|
|
|
2017-06-20 17:19:45 +02:00
|
|
|
ENV DNSCRYPT_WRAPPER_GIT_URL https://github.com/jedisct1/dnscrypt-wrapper.git
|
2018-01-22 20:23:54 +01:00
|
|
|
ENV DNSCRYPT_WRAPPER_GIT_BRANCH xchacha-stamps
|
2015-07-06 01:39:54 +02:00
|
|
|
|
2017-04-19 10:56:02 +02:00
|
|
|
COPY queue.h /tmp
|
|
|
|
|
2015-07-06 01:39:54 +02:00
|
|
|
RUN set -x && \
|
|
|
|
mkdir -p /tmp/src && \
|
|
|
|
cd /tmp/src && \
|
2017-06-20 17:19:45 +02:00
|
|
|
git clone --branch=${DNSCRYPT_WRAPPER_GIT_BRANCH} ${DNSCRYPT_WRAPPER_GIT_URL} && \
|
|
|
|
cd dnscrypt-wrapper && \
|
2017-04-19 10:56:02 +02:00
|
|
|
sed -i 's#<sys/queue.h>#"/tmp/queue.h"#' compat.h && \
|
|
|
|
sed -i 's#HAVE_BACKTRACE#NO_BACKTRACE#' compat.h && \
|
2015-07-06 01:39:54 +02:00
|
|
|
mkdir -p /opt/dnscrypt-wrapper/empty && \
|
|
|
|
groupadd _dnscrypt-wrapper && \
|
|
|
|
useradd -g _dnscrypt-wrapper -s /etc -d /opt/dnscrypt-wrapper/empty _dnscrypt-wrapper && \
|
|
|
|
groupadd _dnscrypt-signer && \
|
|
|
|
useradd -g _dnscrypt-signer -G _dnscrypt-wrapper -s /etc -d /dev/null _dnscrypt-signer && \
|
|
|
|
make configure && \
|
2017-06-20 19:56:15 +02:00
|
|
|
env CFLAGS=-Ofast ./configure --prefix=/opt/dnscrypt-wrapper && \
|
2015-07-06 01:39:54 +02:00
|
|
|
make install && \
|
|
|
|
rm -fr /tmp/* /var/tmp/*
|
|
|
|
|
|
|
|
RUN set -x && \
|
2018-01-22 20:23:54 +01:00
|
|
|
echo apk del --purge $BUILD_DEPS && \
|
|
|
|
echo rm -rf /tmp/* /var/tmp/* /usr/local/include
|
2015-07-06 01:39:54 +02:00
|
|
|
|
|
|
|
RUN mkdir -p \
|
|
|
|
/etc/service/unbound \
|
|
|
|
/etc/service/watchdog
|
|
|
|
|
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
|
|
|
|
2015-07-08 00:19:02 +02:00
|
|
|
COPY dnscrypt-wrapper.sh /etc/service/dnscrypt-wrapper/run
|
2015-07-06 01:39:54 +02:00
|
|
|
|
2015-07-08 00:19:02 +02:00
|
|
|
COPY key-rotation.sh /etc/service/key-rotation/run
|
|
|
|
COPY watchdog.sh /etc/service/watchdog/run
|
2015-07-06 01:39:54 +02:00
|
|
|
|
|
|
|
VOLUME ["/opt/dnscrypt-wrapper/etc/keys"]
|
|
|
|
|
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"]
|