Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
ka1kuk/prozy-anywhere
ka1kuk
/
fastapi
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ee6e9e2
fastapi
/
Dockerfile
ka1kuk
Update Dockerfile
3425ce0
almost 2 years ago
raw
Copy download link
history
blame
156 Bytes
FROM
python:
3.9
WORKDIR
/app
COPY
. .
RUN
pip install --no-cache-dir --upgrade -r requirements.txt
EXPOSE
5000
CMD
[
"python"
,
"app.py"
,
"--no-reload"
]