stream / Dockerfile
abdullahalioo's picture
Update Dockerfile
d4abf30 verified
raw
history blame contribute delete
232 Bytes
FROM python:3.10-slim
WORKDIR /app
# install ffmpeg
RUN apt-get update && apt-get install -y ffmpeg
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
EXPOSE 7860
CMD ["python", "app.py"]