fix: remove deprecated dockerfile

This commit is contained in:
Félix Voituret
2019-11-19 11:56:58 +01:00
parent 326fc323d1
commit 584c39908e
3 changed files with 0 additions and 0 deletions

24
docker/cpu/cpu.dockerfile Normal file
View File

@@ -0,0 +1,24 @@
FROM continuumio/miniconda3:4.7.10
# install tensorflow
RUN conda install -y tensorflow==1.14.0
# install ffmpeg for audio loading/writing
RUN conda install -y -c conda-forge ffmpeg
# install extra python libraries
RUN conda install -y -c anaconda pandas==0.25.1
RUN conda install -y -c conda-forge libsndfile
# install ipython
RUN conda install -y ipython
WORKDIR /workspace/
COPY ./ spleeter/
RUN mkdir /cache/
WORKDIR /workspace/spleeter
RUN pip install .
ENTRYPOINT ["python", "-m", "spleeter"]