Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
vbvbot9117/ytdl2
vbvbot9117
/
ytdl
like
1
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
76bc4e4
ytdl
/
Dockerfile
vbvbot9117
Create Dockerfile
9d574c6
verified
3 months ago
raw
Copy download link
history
blame
Safe
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"
]