entrypoint

This commit is contained in:
Tord-Vincent Heggland
2026-04-08 09:50:09 +02:00
parent 3fec08b203
commit b52d4a5080
3 changed files with 16 additions and 1 deletions

View File

@@ -3,3 +3,8 @@ 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"]