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...
4b22c97
THost
/
Dockerfile
Staticaliza
Update Dockerfile
82c1537
verified
about 2 months ago
raw
Copy download link
history
blame
Safe
146 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install -r requirements.txt
EXPOSE
5678
COPY
. .
CMD
[
"python3"
,
"app.py"
]