Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
clarkchan
/
texttosql_cn
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
621a0dc
texttosql_cn
/
Dockerfile
clarkchan
begin
c6ef230
about 2 years ago
raw
Copy download link
history
blame
Safe
225 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"
,
"main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]