Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Persano
/
formake
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
formake
/
Dockerfile
Persano
Update Dockerfile
ba39547
verified
4 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
176 Bytes
# Dockerfile
FROM
python:
3.11
-slim
WORKDIR
/app
COPY
requirements.txt requirements.txt
RUN
pip install -r requirements.txt
COPY
. .
EXPOSE
7860
CMD
[
"python"
,
"app.py"
]