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...
cae33ea
pipecat
/
Dockerfile
Deadmon
Create Dockerfile
a4855f0
verified
about 2 months ago
raw
Copy download link
history
blame
Safe
165 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
requirements.txt . RUN pip install --no-cache-dir -r requirements.txt
COPY
. .
EXPOSE
7860
7861
CMD
[
"python"
,
"app.py"
]