Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
dina1
/
docker_implementation
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
3ea9abb
docker_implementation
/
Dockerfile
dina1
create Dockerfile
7f89403
verified
8 months ago
raw
Copy download link
history
blame
Safe
189 Bytes
FROM
python:
3.11
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
CMD
[
"uvicorn"
,
"main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]