Files
squeezelite/Dockerfile
Tord-Vincent Heggland b52d4a5080 entrypoint
2026-04-08 09:50:09 +02:00

11 lines
239 B
Docker

FROM debian:bookworm-slim
RUN apt-get update && \
apt-get install -y squeezelite libasound2 alsa-utils && \
rm -rf /var/lib/apt/lists/*
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]