first release 0.0.0.2

This commit is contained in:
2026-03-08 23:31:46 +01:00
parent ea52a4cec4
commit 5eb3ebf199
1432 changed files with 99065 additions and 60 deletions
+24
View File
@@ -0,0 +1,24 @@
# ════════════════════════════════════════════════
# ARIA Voice Bridge — Dockerfile
# Whisper STT + Piper TTS + Wake-Word
# ════════════════════════════════════════════════
FROM python:3.12-slim
# System-Abhängigkeiten fuer Audio und Sprachverarbeitung
RUN apt-get update && apt-get install -y --no-install-recommends \
ffmpeg \
libsndfile1 \
pulseaudio-utils \
alsa-utils \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY aria_bridge.py .
COPY modes.py .
CMD ["python", "aria_bridge.py"]