Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hrsprojects
/
LLM
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0829f48
LLM
/
Dockerfile
hrsprojects
Create Dockerfile
12c832f
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
172 Bytes
FROM
python:
3.10
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install -r requirements.txt
COPY
app.py .
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]