From c2b2e29e46644f834a8e93e88948a67b00cce54a Mon Sep 17 00:00:00 2001 From: VectorAICreations <168691883+VectorAICreations@users.noreply.github.com> Date: Sun, 25 May 2025 16:44:30 -0300 Subject: [PATCH] Update Dockerfile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Na imagem python:3.10-slim, o pacote soundfile (via pysoundfile) precisa da lib libsndfile1. Então adicione isso no Dockerfile também: --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0e29e35..f269ee7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 . .