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,14 +1,22 @@
FROM debian:bookworm-slim
ARG VERSION=0.35.0
ARG WEB_VERSION=0.9.1
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}/snapserver_${VERSION}-1_${ARCH}_bookworm.deb" \
-O /tmp/snapserver.deb \
&& dpkg -i /tmp/snapserver.deb || apt-get install -fy \
&& rm /tmp/snapserver.deb \
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
curl \
unzip \
&& rm -rf /var/lib/apt/lists/*
RUN ARCH=$(dpkg --print-architecture) \
&& curl -L "https://github.com/badaix/snapcast/releases/download/v${VERSION}/snapserver_${VERSION}-1_${ARCH}_bookworm.deb" -o /tmp/snapserver.deb \
&& dpkg -i /tmp/snapserver.deb || apt-get install -fy \
&& rm /tmp/snapserver.deb
RUN curl -L "https://github.com/badaix/snapweb/releases/download/v${WEB_VERSION}/snapweb.zip" -o /tmp/snapweb.zip \
&& mkdir -p /usr/share/snapserver/snapweb \
&& unzip -o /tmp/snapweb.zip -d /usr/share/snapserver/snapweb \
&& rm /tmp/snapweb.zip
EXPOSE 1704 1705 1780
CMD ["snapserver"]