🐛 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

@@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
platform: [cpu, gpu]
distribution: [3.7, 3.8, conda]
distribution: [3.6, 3.7, 3.8, conda]
model: [modelless, 2stems, 4stems, 5stems]
fail-fast: true
steps:

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"]