From d6b412e3a670d85b405bfea3a42c166e4b68e049 Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Mon, 2 Nov 2020 16:19:18 +0100 Subject: [PATCH] Update Dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f9ce4f5d..a10b0e47 100755 --- a/Dockerfile +++ b/Dockerfile @@ -67,7 +67,7 @@ RUN wget -O rustup.sh https://sh.rustup.rs \ && rustup install nightly \ && rustup default nightly \ && pip install orjson \ - && sh rustup.sh --uninstall -y \ + && rustup self uninstall -y \ && rm rustup.sh # install uvloop and music assistant @@ -77,6 +77,7 @@ RUN pip install --upgrade uvloop music-assistant==${MASS_VERSION} RUN apk del .build-deps \ && rm -rf /usr/src/* + ENV DEBUG=false VOLUME [ "/data" ] -- 2.34.1