From 20832aad99962185a1e7395c9192576f1ec939b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Voituret?= Date: Thu, 21 Nov 2019 12:34:24 +0100 Subject: [PATCH] fix: libsndfile dep --- docker/cpu/python-3.6.dockerfile | 2 +- docker/cpu/python-3.7.dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/cpu/python-3.6.dockerfile b/docker/cpu/python-3.6.dockerfile index a10868d..0f23184 100644 --- a/docker/cpu/python-3.6.dockerfile +++ b/docker/cpu/python-3.6.dockerfile @@ -1,6 +1,6 @@ FROM python:3.6 -RUN apt-get update && apt-get install -y ffmpeg libsndfile +RUN apt-get update && apt-get install -y ffmpeg libsndfile1 RUN pip install musdb museval RUN pip install spleeter RUN mkdir -p /model diff --git a/docker/cpu/python-3.7.dockerfile b/docker/cpu/python-3.7.dockerfile index f900683..33bdcbc 100644 --- a/docker/cpu/python-3.7.dockerfile +++ b/docker/cpu/python-3.7.dockerfile @@ -1,6 +1,6 @@ FROM python:3.7 -RUN apt-get update && apt-get install -y ffmpeg libsndfile +RUN apt-get update && apt-get install -y ffmpeg libsndfile1 RUN pip install musdb museval RUN pip install spleeter RUN mkdir -p /model