From 88def5fe01f677c5f79f9a69ddc91079df94ced8 Mon Sep 17 00:00:00 2001 From: Peter Cummuskey Date: Mon, 21 Aug 2017 17:26:42 +1200 Subject: [PATCH] Adding sbin folder back to path so apt-get works again. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9277524..4cebd36 100644 --- a/Dockerfile +++ b/Dockerfile @@ -36,7 +36,7 @@ RUN mkdir -p /home/rust/libs /home/rust/src # Set up our path with all our binary directories, including those for the # musl-gcc toolchain and for our Rust toolchain. -ENV PATH=/home/rust/.cargo/bin:/usr/local/musl/bin:/usr/local/bin:/usr/bin:/bin +ENV PATH=/home/rust/.cargo/bin:/usr/local/musl/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin # Install our Rust toolchain and the `musl` target. We patch the # command-line we pass to the installer so that it won't attempt to