Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Praveen0309
/
Chatbot_3
like
0
Runtime error
App
Files
Files
Community
c4736af
Chatbot_3
/
Dockerfile
Praveen0309
App_1
c4736af
7 months ago
raw
Copy download link
history
blame
Safe
195 Bytes
FROM
python:
3.10
WORKDIR
/app
ENV
FLASK_APP=app.py
ENV
FLASK_RUN_HOST=
0.0
.
0.0
COPY
requirements.txt requirements.txt
RUN
pip install -r requirements.txt
EXPOSE
7860
COPY
. .
CMD
[
"flask"
,
"run"
]