Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
RocksPers
/
PochiBot
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
029c14d
PochiBot
/
Dockerfile
RocksPers
Create Dockerfile
029c14d
verified
2 months ago
raw
Copy download link
history
blame
Safe
198 Bytes
FROM
python:
3.9
WORKDIR
/app
COPY
requirements.txt requirements.txt
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]