Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Yapp99
/
LLM_endpoint
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
32ddb76
LLM_endpoint
/
Dockerfile
Yapp99
small changes
973eb88
3 months ago
raw
Copy download link
history
blame
Safe
202 Bytes
FROM
python:
3.11
COPY
. .
WORKDIR
/
RUN
pip install --no-cache-dir --upgrade -r /requirements.txt
RUN
useradd -m -u 1000 user
CMD
[
"fastapi"
,
"run"
,
"api.py"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]