Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
imperialwool
/
funapi
like
2
Running
App
Files
Files
Fetching metadata from the HF Docker repository...
dcf9b38
funapi
/
Dockerfile
imperialwool
Update Dockerfile
dcf9b38
about 2 years ago
raw
Copy download link
history
blame
214 Bytes
FROM
debian:latest
COPY
. /app
WORKDIR
/app
RUN
apt update
RUN
apt install ffmpeg python3 python3-pip -y
WORKDIR
/
RUN
pip install --no-cache-dir --upgrade -r /app/requirements.txt
CMD
[
"python3"
,
"app.py"
]