Scream Audio Receiver Docker Image with PipeWire ALSA Compatibility Layer
10K+
Dockerfile:
FROM alpine AS build
RUN apk add --no-cache alpine-sdk alsaconf alsa-lib-dev alsa-utils cmake
ADD https://github.com/duncanthrax/scream.git /scream
WORKDIR /scream/Receivers/unix/build
RUN cmake .. && make
FROM alpine
RUN apk add --no-cache alsa-lib pipewire-alsa util-linux
COPY --from=build /scream/Receivers/unix/build/scream /scream/
EXPOSE 4010/udp
ENTRYPOINT ["/scream/scream", "-v"]
CMD ["-o", "alsa"]
Content type
Image
Digest
sha256:b012f400c…
Size
103.8 MB
Last updated
13 days ago
docker pull ssankur/scream