Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
saadkhi
/
SQL_chatbot_API
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
e95c2d3
SQL_chatbot_API
/
Dockerfile
saadkhi
Update Dockerfile
29cfa39
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
148 Bytes
FROM
python:
3.10
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
app.py .
CMD
[
"python"
,
"app.py"
]