Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
QAI
/
Chat_QnA_v2
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d037cdf
Chat_QnA_v2
/
Dockerfile
binh99
update new
d037cdf
over 1 year ago
raw
Copy download link
history
blame
Safe
159 Bytes
FROM
python:
3.10
WORKDIR
/usr/src/app
COPY
requirements.txt ./
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
CMD
[
"python"
,
"app.py"
]