Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
imperialwool
/
funapi
like
2
Runtime error
App
Files
Files
f626f92
funapi
/
Dockerfile
woolbot
attempt to optimize building
3fe1ddd
almost 2 years ago
raw
Copy download link
history
blame
Safe
211 Bytes
FROM
python:
3.11
.
1
-bullseye
COPY
. /app
RUN
chmod
-R 777 /app
WORKDIR
/app
RUN
apt update && apt install ffmpeg -y
RUN
pip install --no-cache-dir --upgrade -r /app/requirements.txt
CMD
[
"python"
,
"app.py"
]