Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Deadmon
/
pipecat
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
47cee22
pipecat
/
Dockerfile
Deadmon
Update Dockerfile
93e49e4
verified
4 months ago
raw
Copy download link
history
blame
Safe
195 Bytes
FROM
python:
3.11
-slim
WORKDIR
/pipecat
COPY
. .
RUN
pip install --no-cache-dir -r requirements.txt
EXPOSE
7860
CMD
[
"uvicorn"
,
"bot_runner:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
,
"--reload"
]