Viele Änderungen

This commit is contained in:
RubenRWU
2026-04-07 15:08:56 +02:00
parent b4e78206ed
commit d1866508ca
12 changed files with 1130 additions and 422 deletions

View File

@@ -3,14 +3,12 @@ FROM python:3.11-slim
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
PIP_NO_CACHE_DIR=1 \
PORT=8276
PORT=8276 \
TEMP_DIR=/tmp
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ffmpeg \
libsndfile1 \
libgl1 \
libgomp1 \
fonts-noto-core \
&& rm -rf /var/lib/apt/lists/*
@@ -22,7 +20,7 @@ RUN pip install --upgrade pip \
COPY . .
ENV ENABLE_SPEAKER_DIARIZATION=false
RUN mkdir -p /tmp/meeting-transcript /app/output
EXPOSE 8276