Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
yangtb24
/
GIF
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
GIF
/
Dockerfile
yangtb24
Create Dockerfile
ce29719
verified
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
Safe
167 Bytes
FROM
python:
3.9
-slim-buster
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
EXPOSE
7860
CMD
[
"python"
,
"app.py"
]