pavi / Dockerfle
lol040604lol's picture
Create Dockerfle
98b9998 verified
raw
history blame contribute delete
329 Bytes
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"]