🐛 Fix conda installation

This commit is contained in:
Félix Voituret
2021-02-12 10:44:36 +01:00
parent ddc5debed7
commit 5ac9b01d0c
2 changed files with 3 additions and 2 deletions

View File

@@ -6,7 +6,8 @@ ARG SPLEETER_VERSION=1.5.3
ENV MODEL_PATH /model
RUN mkdir -p /model
RUN conda config --add channels conda-forge
RUN conda install -y -c conda-forge musdb
RUN conda install -y -c conda-forge spleeter==${SPLEETER_VERSION}
RUN conda install -y -c deezer-research spleeter
COPY docker/conda-entrypoint.sh spleeter-entrypoint.sh
ENTRYPOINT ["/bin/bash", "spleeter-entrypoint.sh"]