Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
itskdhere
/
quickaid
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
aec98fe
quickaid
/
Dockerfile
itskdhere
Upload 7 files
aec98fe
verified
3 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=
7860
EXPOSE
${PORT}
CMD
[
"python"
,
"app.py"
]