Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
ka1kuk/prozy-anywhere
ka1kuk
/
fastapi
like
1
Sleeping
App
Files
Files
Community
20a756d
fastapi
/
Dockerfile
ka1kuk
Update Dockerfile
20a756d
over 1 year ago
raw
Copy download link
history
blame
131 Bytes
FROM
python:
3.9
WORKDIR
/app
COPY
. .
RUN
pip install --no-cache-dir -r requirements.txt
EXPOSE
5000
CMD
[
"python"
,
"app.py"
]