Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
crespo12
/
medgemma
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
medgemma
/
Dockerfile
crespo12
nb
d924411
8 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
183 Bytes
FROM
python:
3.10
WORKDIR
/app
COPY
requirement.txt .
RUN
pip install --no-cache-dir -r requirement.txt
COPY
. .
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]