From: Marcel van der Veldt Date: Mon, 2 Nov 2020 15:26:07 +0000 (+0100) Subject: Update Dockerfile X-Git-Url: https://git.kitaultman.com/?a=commitdiff_plain;h=63af99d1960c5c86669e28b240426f14a2379bb8;p=music-assistant-server.git Update Dockerfile --- diff --git a/Dockerfile b/Dockerfile index a10b0e47..58b5ac3d 100755 --- a/Dockerfile +++ b/Dockerfile @@ -66,15 +66,15 @@ RUN wget -O rustup.sh https://sh.rustup.rs \ && cp $HOME/.cargo/bin/* /usr/local/bin \ && rustup install nightly \ && rustup default nightly \ - && pip install orjson \ - && rustup self uninstall -y \ - && rm rustup.sh + && pip install orjson # install uvloop and music assistant RUN pip install --upgrade uvloop music-assistant==${MASS_VERSION} # cleanup build files -RUN apk del .build-deps \ +RUN rustup self uninstall -y \ + && rm rustup.sh \ + && apk del .build-deps \ && rm -rf /usr/src/*