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...
7dec2b8
THost
/
Dockerfile
Staticaliza
Update Dockerfile
598bdb3
verified
2 months ago
raw
Copy download link
history
blame
Safe
153 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
. /app
RUN
pip install --no-cache-dir --upgrade pip
ENV
PORT=
5678
EXPOSE
5678
CMD
[
"python3"
,
"-u"
,
"app.py"
]