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...
01f0f4b
THost
/
Dockerfile
Staticaliza
Create Dockerfile
2cfd607
verified
2 months ago
raw
Copy download link
history
blame
Safe
184 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"
,
"my_tcp_server.py"
]