created twilio_websocket_service.py, TwilioFrameSerializer.py moved pcm_16000_to_ulaw_8000 and ulaw_8000_to_pcm_16000 to src/pipecat/utils/audio.py fixed callback on disconnect
21 lines
530 B
Docker
21 lines
530 B
Docker
# Use an official Python runtime as a parent image
|
|
FROM python:3.10-bullseye
|
|
|
|
# Set the working directory in the container
|
|
WORKDIR /twilio-chatbot
|
|
|
|
# Copy the requirements file into the container
|
|
COPY requirements.txt .
|
|
|
|
# Install any needed packages specified in requirements.txt
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Copy the current directory contents into the container
|
|
COPY . .
|
|
|
|
# Expose the desired port
|
|
EXPOSE 8765
|
|
|
|
# Run the application
|
|
CMD ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "8765"]
|