Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
SpacesLab
/
THost
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
64d0a8b
THost
/
Dockerfile
Staticaliza
Update Dockerfile
64d0a8b
verified
about 2 months ago
raw
Copy download link
history
blame
Safe
174 Bytes
from
python:
3.10
-slim
workdir
/app
copy
requirements.txt .
run
pip install -r requirements.txt
# pick a non-privileged port
expose
5678
copy
. .
cmd
[
"python"
,
"app.py"
]