Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
mgbam
/
AI_SQL
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
AI_SQL
/
Dockerfile
mgbam
Create Dockerfile
9dc31f3
verified
15 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
121 Bytes
FROM
python:
3.10
-slim
WORKDIR
/code
COPY
. .
RUN
pip install --no-cache-dir -r requirements.txt
CMD
[
"python"
,
"app.py"
]