Move project from bordanlage/ to repo root

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-26 14:31:08 +01:00
parent 946c0a5377
commit 77123a0df5
56 changed files with 0 additions and 0 deletions

20
docker/mopidy/Dockerfile Normal file
View File

@@ -0,0 +1,20 @@
FROM ghcr.io/mopidy/mopidy:latest
USER root
RUN pip3 install \
mopidy-iris \
mopidy-local \
mopidy-stream \
mopidy-tunein \
mopidy-podcast \
--break-system-packages
# Ensure audio pipe directory exists at startup
RUN echo '#!/bin/sh\nmkdir -p /tmp/audio\nexec "$@"' > /entrypoint-wrapper.sh \
&& chmod +x /entrypoint-wrapper.sh
USER mopidy
ENTRYPOINT ["/entrypoint-wrapper.sh"]
CMD ["mopidy", "--config", "/etc/mopidy/mopidy.conf"]