Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
seamo-ai/ai-server
seamo-ai
/
auth-server
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
5aa78f4
auth-server
/
Dockerfile
kamau1
Update Dockerfile
b7dcec1
verified
over 1 year ago
raw
Copy download link
history
blame
Safe
177 Bytes
FROM
python:
3.10
.
9
COPY
. .
WORKDIR
/
RUN
pip install --no-cache-dir --upgrade -r /requirements.txt
CMD
[
"uvicorn"
,
"modules.app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]