pltobing's picture
Add project files
f724af4
raw
history blame contribute delete
353 Bytes
FROM python:3.11-slim
WORKDIR /app
# Install system dependencies for audio processing
RUN apt-get update && apt-get install -y --no-install-recommends \
libsndfile1 \
libportaudio2 \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 8765
CMD ["python", "app.py"]