Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hunkim
/
es_gpt
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
7c844be
es_gpt
/
Dockerfile
hunkim
Create Dockerfile
a182a2c
almost 2 years ago
raw
Copy download link
history
blame
Safe
223 Bytes
FROM
python:
3.9
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"
]