Initial commit: HA Voice Control MCP server

This commit is contained in:
mo
2026-05-10 02:24:34 +02:00
commit ff3254cc87
38 changed files with 5322 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
# Dockerfile — HA Voice Control + Dashboard voor Synology NAS
FROM python:3.12-slim
WORKDIR /app
# Systeem dependencies (ffmpeg nodig voor Whisper audio)
RUN apt-get update && apt-get install -y --no-install-recommends \
libsndfile1 \
ffmpeg \
&& rm -rf /var/lib/apt/lists/*
# Python dependencies (twee losse stappen = betere caching)
COPY requirements.txt requirements-neo4j.txt ./
RUN pip install --no-cache-dir -r requirements.txt -r requirements-neo4j.txt
# Applicatiecode
COPY config.py .
COPY src/ ./src/
COPY static/ ./static/
EXPOSE 8765
CMD ["python", "-m", "src.web_server"]