Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Anyexyz
/
Auto-Build-1Panel-APP
like
2
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
f396b2d
Auto-Build-1Panel-APP
/
Dockerfile
Anyexyz
Update Dockerfile
6fc0467
verified
5 months ago
raw
Copy download link
history
blame
Safe
178 Bytes
FROM
python:
3.10
WORKDIR
/app
COPY
. /app
RUN
pip install --no-cache-dir -r requirements.txt
EXPOSE
8080
CMD
[
"uvicorn"
,
"main:main"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"8080"
]