Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
ak0601
/
Reminder
like
0
Sleeping
App
Files
Files
Community
main
Reminder
/
Dockerfile
ak0601
Update Dockerfile
c2d09a0
verified
10 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
166 Bytes
FROM
python:
3.10
.
9
COPY
. .
WORKDIR
/
RUN
pip install --no-cache-dir --upgrade -r /requirements.txt
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]