From 1955ebe6fd14cb4b0ab375ebd6593e386fcf530e Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Wed, 20 Nov 2019 03:03:39 +0100 Subject: [PATCH] Use rust-beta, since nightly can be broken --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 78d4978..068b40e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,7 +35,7 @@ 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 nightly && \ + curl -sSf https://sh.rustup.rs | bash -s -- -y --default-toolchain beta && \ export PATH="$HOME/.cargo/bin:$PATH" && \ echo "Compiling encrypted-dns version 0.3.8" && \ cargo install encrypted-dns && \