14 lines
342 B
Docker
14 lines
342 B
Docker
FROM debian:11
|
|
|
|
RUN dpkg --add-architecture armhf
|
|
RUN apt update
|
|
RUN apt -y install curl
|
|
RUN curl -Lso /tmp/snapserver.deb https://github.com/badaix/snapcast/releases/download/v0.27.0/snapserver_0.27.0-1_armhf.deb
|
|
RUN apt -y install /tmp/snapserver.deb
|
|
RUN rm -fr /tmp/snapserver.deb
|
|
|
|
RUN mkdir /work
|
|
WORKDIR /work
|
|
|
|
ENTRYPOINT ["snapserver"]
|