Spaces:
Sleeping
Sleeping
| FROM python:3.10-slim | |
| # Install PortAudio library and development files | |
| RUN apt-get update && apt-get install -y \ | |
| portaudio19-dev \ | |
| libasound-dev \ | |
| libportaudio2 \ | |
| libportaudiocpp0 | |
| # Copy your app and install dependencies | |
| COPY . /app | |
| WORKDIR /app | |
| RUN pip install -r requirements.txt | |
| CMD ["python", "app.py"] | |