From f1f4aed39825afc8670317cf413fcff4d627e409 Mon Sep 17 00:00:00 2001 From: Mark Backman Date: Tue, 29 Jul 2025 11:41:27 -0400 Subject: [PATCH] Remove random Dockerfile, update README links --- Dockerfile | 40 ---------------------------------------- README.md | 10 +++++----- 2 files changed, 5 insertions(+), 45 deletions(-) delete mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index f10db656d..000000000 --- a/Dockerfile +++ /dev/null @@ -1,40 +0,0 @@ -# setup -FROM python:3.11.5 - -WORKDIR /app -COPY requirements.txt /app -COPY *.py /app -COPY pyproject.toml /app - -COPY src/ /app/src/ -COPY examples/ /app/examples/ - -WORKDIR /app -RUN ls --recursive /app/ -RUN pip3 install --upgrade -r requirements.txt -RUN python -m build . -RUN pip3 install . -RUN pip3 install gunicorn -# If running on Ubuntu, Azure TTS requires some extra config -# https://learn.microsoft.com/en-us/azure/ai-services/speech-service/quickstarts/setup-platform?pivots=programming-language-python&tabs=linux%2Cubuntu%2Cdotnetcli%2Cdotnet%2Cjre%2Cmaven%2Cnodejs%2Cmac%2Cpypi - -RUN wget -O - https://www.openssl.org/source/openssl-1.1.1w.tar.gz | tar zxf - -WORKDIR openssl-1.1.1w -RUN ./config --prefix=/usr/local -RUN make -j $(nproc) -RUN make install_sw install_ssldirs -RUN ldconfig -v -ENV SSL_CERT_DIR=/etc/ssl/certs - -#ENV LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH -RUN apt clean -RUN apt-get update -RUN apt-get -y install build-essential libssl-dev ca-certificates libasound2 wget - -ENV PYTHONUNBUFFERED=1 - -WORKDIR /app - -EXPOSE 8000 -# run -CMD ["gunicorn", "--workers=2", "--log-level", "debug", "--chdir", "examples/server", "--capture-output", "daily-bot-manager:app", "--bind=0.0.0.0:8000"] diff --git a/README.md b/README.md index 0723ec9bc..7e42af4a1 100644 --- a/README.md +++ b/README.md @@ -31,11 +31,11 @@ ## ๐ŸŽฌ See it in action

-   - +   +
-   - +   +

## ๐Ÿ“ฑ Client SDKs @@ -88,7 +88,7 @@ pip install "pipecat-ai[option,...]" ## ๐Ÿงช Code examples - [Foundational](https://github.com/pipecat-ai/pipecat/tree/main/examples/foundational) โ€” small snippets that build on each other, introducing one or two concepts at a time -- [Example apps](https://github.com/pipecat-ai/pipecat/tree/main/examples/) โ€” complete applications that you can use as starting points for development +- [Example apps](https://github.com/pipecat-ai/pipecat-examples) โ€” complete applications that you can use as starting points for development ## ๐Ÿ› ๏ธ Hacking on the framework itself