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