From 090abe5b79b4155395b79a497110aa345dfb8e77 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Wed, 25 Sep 2019 11:29:02 +0200 Subject: [PATCH] apt -> apt-get --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6f11f17..c3a662c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,7 +34,7 @@ RUN apt-get update; apt-get install -qy --no-install-recommends $BUILD_DEPS && \ ENV RUSTFLAGS "-C link-arg=-s" -RUN apt update && apt-get install -qy --no-install-recommends $BUILD_DEPS && \ +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 && \ export PATH="$HOME/.cargo/bin:$PATH" && \ echo "Compiling encrypted-dns version 0.2.3" && \