From 0c34f908c26be81f8594fe67388047f250845120 Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Wed, 12 Jul 2023 00:42:46 +0200 Subject: [PATCH] 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 --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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" \ -- 2.34.1