Spotify integration added

This commit is contained in:
2026-05-17 13:35:34 +02:00
parent 9a9275dae5
commit 4d53efc9e4
16 changed files with 1890 additions and 82 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM python:3.12-slim
RUN pip install --no-cache-dir requests
WORKDIR /app
COPY app.py .
HEALTHCHECK --interval=20s --timeout=5s \
CMD python3 -c "import urllib.request; urllib.request.urlopen('http://localhost:8091/health')" || exit 1
CMD ["python3", "app.py"]