Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
noobmaster1246
/
quickaid
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
f188b5f
quickaid
/
Dockerfile
noobmaster1246
Upload 7 files
f188b5f
verified
4 months ago
raw
Copy download link
history
blame
Safe
209 Bytes
FROM
python:
3.11
-slim
WORKDIR
/app
RUN
pip install torch pandas scikit-learn sentence-transformers transformers symspellpy flask
COPY
. .
ENV
PORT=
5000
EXPOSE
${PORT}
CMD
[
"python"
,
"app.py"
]