feat: add dockerfiles for model embedded dist

This commit is contained in:
Félix Voituret
2019-11-05 15:27:20 +01:00
parent bdf09d9a25
commit 4e4c248f2e
16 changed files with 98 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
FROM continuumio/miniconda3:4.7.10
RUN conda install -y ipython \
&& conda install -y tensorflow==1.14.0 \
&& conda install -y -c conda-forge ffmpeg \
&& conda install -y -c conda-forge libsndfile \
&& conda install -y -c anaconda pandas==0.25.1 \
RUN mkdir -p /model
ENV MODEL_PATH /model
RUN pip install spleeter
ENTRYPOINT ["spleeter"]