You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
266 B

2 years ago
  1. ARG BASE=python:3.6
  2. FROM ${BASE}
  3. ARG SPLEETER_VERSION=1.5.3
  4. ENV MODEL_PATH /model
  5. RUN mkdir -p /model
  6. RUN apt-get update && apt-get install -y ffmpeg libsndfile1
  7. RUN pip install musdb museval
  8. RUN pip install spleeter==${SPLEETER_VERSION}
  9. ENTRYPOINT ["spleeter"]