feat: complete dashboard redesign, proxy unification, and Windows compatibility fixes

This commit is contained in:
2026-04-02 12:13:37 +02:00
parent 8192388c5d
commit fec4e4635c
33 changed files with 3002 additions and 135 deletions

View File

@@ -1,13 +1,14 @@
FROM debian:bookworm-slim
ARG VERSION=0.35.0
RUN apt-get update \
&& apt-get install -y --no-install-recommends ca-certificates wget \
&& ARCH=$(dpkg --print-architecture) \
&& wget -q "https://github.com/badaix/snapcast/releases/download/v${VERSION}/snapclient_${VERSION}-1_${ARCH}_bookworm.deb" \
-O /tmp/snapclient.deb \
&& dpkg -i /tmp/snapclient.deb || apt-get install -fy \
&& rm /tmp/snapclient.deb \
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
curl \
&& rm -rf /var/lib/apt/lists/*
ENTRYPOINT ["snapclient"]
RUN ARCH=$(dpkg --print-architecture) \
&& curl -L "https://github.com/badaix/snapcast/releases/download/v${VERSION}/snapclient_${VERSION}-1_${ARCH}_bookworm.deb" -o /tmp/snapclient.deb \
&& dpkg -i /tmp/snapclient.deb || apt-get install -fy \
&& rm /tmp/snapclient.deb
ENTRYPOINT ["/usr/bin/snapclient"]