Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Moibe
/
nowme-images
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
2011e87
nowme-images
/
Dockerfile
Moibe
Inicio
5b38336
about 2 months ago
raw
Copy download link
history
blame
Safe
224 Bytes
FROM
python:
3.13
WORKDIR
/code
COPY
./requirements.txt /code/requirements.txt
RUN
pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY
. .
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]