### Build Docker Image Source: https://github.com/daviiabreu/speech-rag-orchestrator/blob/main/README.md Builds the Docker image for the application. Tagged as stt_tts:latest. ```bash docker build -t stt_tts:latest . ``` -------------------------------- ### Run Docker Container and Mount Volume Source: https://github.com/daviiabreu/speech-rag-orchestrator/blob/main/README.md Runs the Docker container interactively, mounts the current directory to /usr/src/stt_tts, and executes a bash shell within the container. This allows for live file modification. ```bash docker run -it --rm -v $(pwd):/usr/src/stt_tts stt_tts:latest /bin/bash ``` -------------------------------- ### Update Requirements and Exit Container Source: https://github.com/daviiabreu/speech-rag-orchestrator/blob/main/README.md After making changes within the container, this command generates an updated requirements.txt file and then exits the container. ```bash python3 pip freeze > requirements.txt && \ exit ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.