feat: complete dashboard redesign, proxy unification, and Windows compatibility fixes
This commit is contained in:
@@ -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"]
|
||||
|
||||
Reference in New Issue
Block a user