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...
ef059e2
quickaid
/
Dockerfile
noobmaster1246
Update Dockerfile
ef059e2
verified
3 months ago
raw
Copy download link
history
blame
Safe
204 Bytes
FROM
python:
3.11
-slim
WORKDIR
/app
RUN
pip install torch pandas scikit-learn sentence-transformers transformers symspellpy flask gradio
COPY
. .
ENV
PORT=
5000
EXPOSE
${PORT}
CMD
[
"python"
,
"app.py"
]