Ken-AI-Co-Listener / Dockerfile
Zheng, Zaoyi
Add Dockerfile for HuggingFace Spaces deployment
ac07a29
Raw
History Blame Contribute Delete
302 Bytes
FROM python:3.11-slim
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \
ffmpeg \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN mkdir -p uploads
EXPOSE 7860
CMD ["python", "server.py"]