Update Dockerfile

Na imagem python:3.10-slim, o pacote soundfile (via pysoundfile) precisa da lib libsndfile1.
Então adicione isso no Dockerfile também:
This commit is contained in:
VectorAICreations 2025-05-25 16:44:30 -03:00 committed by GitHub
parent 3a766fdc1a
commit c2b2e29e46
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,9 +1,10 @@
FROM python:3.10-slim
RUN apt-get update && apt-get install -y libsndfile1 && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .