Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
bhavika24
/
Text_to_sql
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
2c656c5
Text_to_sql
/
Dockerfile
bhavika24
Upload Dockerfile
5b10d23
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
210 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
. /app
RUN
pip install --no-cache-dir -r requirements.txt
EXPOSE
8501
CMD
[
"streamlit"
,
"run"
,
"UI.py"
,
"--server.port=8501"
,
"--server.address=0.0.0.0"
]