Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
psychologists
/
testing
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
16e6da6
testing
/
Dockerfile
psychologists
Upload 4 files
16e6da6
over 1 year ago
raw
Copy download link
history
blame
Safe
210 Bytes
# app/Dockerfile
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
./ ./
RUN
pip3 install -r requirements.txt
EXPOSE
8501
ENTRYPOINT
[
"streamlit"
,
"run"
,
"app.py"
,
"--server.port=8501"
,
"--server.address=0.0.0.0"
]