server / Dockerfile
Techbitforge's picture
Create Dockerfile
b680146 verified
raw
history blame contribute delete
231 Bytes
FROM python:3.10-slim
# system packages
RUN apt-get update && apt-get install -y ffmpeg
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["python", "server.py"]