Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
rdune71/AI-Life-Coach-Streamlit
rdune71
/
AI-Life-Coach-Streamlit2
like
2
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
1949ac7
AI-Life-Coach-Streamlit2
/
Dockerfile
rdune71
Update
d891499
about 2 months ago
raw
Copy download link
history
blame
Safe
171 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
EXPOSE
8501
CMD
[
"streamlit"
,
"run"
,
"app.py"
]