ytdl / Dockerfile
vbvbot9117's picture
Create Dockerfile
9d574c6 verified
raw
history blame
193 Bytes
FROM python:3.9-slim
WORKDIR /app
RUN apt-get update && apt-get install -y ffmpeg
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["python", "app.py"]