Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
phucbienvan
/
AppChat
like
4
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
AppChat
/
Dockerfile
phucbienvan
init
46f282d
6 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
187 Bytes
FROM
python:
3.9
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install -r requirements.txt
COPY
. .
EXPOSE
8501
CMD
[
"streamlit"
,
"run"
,
"app.py"
,
"--server.address"
,
"0.0.0.0"
]