From: Marcel van der Veldt Date: Tue, 11 Jul 2023 22:42:46 +0000 (+0200) Subject: Small fixes (#771) X-Git-Url: https://git.kitaultman.com/?a=commitdiff_plain;h=0c34f908c26be81f8594fe67388047f250845120;p=music-assistant-server.git Small fixes (#771) * hide unavailable settings for group player * ignore unavailable child players * cleanup * return the correct active_source * slimproto: prevent flipflop to idle while playing * support group in a group * revert to iter_chunked * another attempt to solve the airplay flipflop weirdness at reload * Update release.yml * Update Dockerfile --- diff --git a/Dockerfile b/Dockerfile index f1f66b1c..1968d2a4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,6 +39,10 @@ RUN set -x \ FROM python:${PYTHON_VERSION}-slim AS final-build WORKDIR /app +# Required to persist build arg +ARG MASS_VERSION +ARG TARGETPLATFORM + RUN set -x \ && apt-get update \ && apt-get install -y --no-install-recommends \ @@ -77,10 +81,6 @@ RUN \ export LD_PRELOAD="$(find /usr/lib/ -name *libjemalloc.so.2)" \ export MALLOC_CONF="background_thread:true,metadata_thp:auto,dirty_decay_ms:20000,muzzy_decay_ms:20000" -# Required to persist build arg -ARG MASS_VERSION -ARG TARGETPLATFORM - # Set some labels LABEL \ org.opencontainers.image.title="Music Assistant" \