SimpleFrog/WER_Evaluation
0
1FROM python:3.9-slim2 3WORKDIR /app4 5# Installer dépendances système6RUN apt-get update && apt-get install -y \7 build-essential \8 ffmpeg \9 git \10 && rm -rf /var/lib/apt/lists/*11 12COPY requirements.txt ./13RUN pip install --no-cache-dir -r requirements.txt14 15COPY . .16 17EXPOSE 850118 19RUN mkdir -p /app/.streamlit20ENV STREAMLIT_HOME=/app/.streamlit21 22CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]