1
1
mirror of https://github.com/dnscrypt/dnscrypt-server-docker synced 2024-11-22 15:32:01 +01:00

Use rust-beta, since nightly can be broken

This commit is contained in:
Frank Denis 2019-11-20 03:03:39 +01:00
parent 77d5a48b04
commit 1955ebe6fd

@ -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 && \