Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
mlnsio
/
text2sql
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
38171fa
text2sql
/
Dockerfile
ns-devel
Text2SQL app
38171fa
over 1 year ago
raw
Copy download link
history
blame
Safe
215 Bytes
FROM
python:
3.11
WORKDIR
/code
COPY
./requirements.txt /code/requirements.txt
RUN
pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY
. .
CMD
[
"python"
,
"manage.py"
,
"runserver"
,
"0.0.0.0:8000"
]