Initial commit: homelab configs, Docker, Neo4j, voice control, Gitea

This commit is contained in:
mo
2026-05-10 02:02:03 +02:00
commit 4dea5925fb
42 changed files with 5680 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"]