SCR-Bench-Leaderboard / Dockerfile
kyle-X1e's picture
Add Dockerfile (Python 3.12 to avoid audioop issue with pydub on 3.13)
2ec39ef verified
Raw
History Blame Contribute Delete
165 Bytes
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
EXPOSE 7860
CMD ["python", "app.py"]