26 lines
808 B
Docker
26 lines
808 B
Docker
# ════════════════════════════════════════════════
|
|
# 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 \
|
|
libportaudio2 \
|
|
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"]
|