From fa8889dc825ce3335bc2d9c9144f9ca561c663e0 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Wed, 20 Nov 2019 03:23:26 +0100 Subject: [PATCH] Update server just so that it can be compiled with rust-stable --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 068b40e..7e944a4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,9 +35,9 @@ RUN apt-get update; apt-get install -qy --no-install-recommends $BUILD_DEPS && \ ENV RUSTFLAGS "-C link-arg=-s" RUN apt-get update && apt-get install -qy --no-install-recommends $BUILD_DEPS && \ - curl -sSf https://sh.rustup.rs | bash -s -- -y --default-toolchain beta && \ + curl -sSf https://sh.rustup.rs | bash -s -- -y --default-toolchain stable && \ export PATH="$HOME/.cargo/bin:$PATH" && \ - echo "Compiling encrypted-dns version 0.3.8" && \ + echo "Compiling encrypted-dns version 0.3.9" && \ cargo install encrypted-dns && \ mkdir -p /opt/encrypted-dns/sbin && \ mv ~/.cargo/bin/encrypted-dns /opt/encrypted-dns/sbin/ && \