forked from deezer/spleeter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add dockerfiles for model embedded dist
- Loading branch information
Félix Voituret
committed
Nov 5, 2019
1 parent
bdf09d9
commit 4e4c248
Showing
16 changed files
with
98 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM deezer/spleeter:conda | ||
|
||
RUN mkdir -p /model/2stems \ | ||
&& wget -O /tmp/2stems.tar.gz https://github.com/deezer/spleeter/releases/download/v1.4.0/2stems.tar.gz \ | ||
&& tar -xvzf /tmp/2stems.tar.gz -C /model/2stems/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM deezer/spleeter:conda | ||
|
||
RUN mkdir -p /model/4stems \ | ||
&& wget -O /tmp/4stems.tar.gz https://github.com/deezer/spleeter/releases/download/v1.4.0/4stems.tar.gz \ | ||
&& tar -xvzf /tmp/4stems.tar.gz -C /model/4stems/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM deezer/spleeter:conda | ||
|
||
RUN mkdir -p /model/5stems \ | ||
&& wget -O /tmp/5stems.tar.gz https://github.com/deezer/spleeter/releases/download/v1.4.0/5stems.tar.gz \ | ||
&& tar -xvzf /tmp/5stems.tar.gz -C /model/5stems/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM deezer/spleeter:3.6 | ||
|
||
RUN mkdir -p /model/2stems \ | ||
&& wget -O /tmp/2stems.tar.gz https://github.com/deezer/spleeter/releases/download/v1.4.0/2stems.tar.gz \ | ||
&& tar -xvzf /tmp/2stems.tar.gz -C /model/2stems/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM deezer/spleeter:3.6 | ||
|
||
RUN mkdir -p /model/4stems \ | ||
&& wget -O /tmp/4stems.tar.gz https://github.com/deezer/spleeter/releases/download/v1.4.0/4stems.tar.gz \ | ||
&& tar -xvzf /tmp/4stems.tar.gz -C /model/4stems/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM deezer/spleeter:3.6 | ||
|
||
RUN mkdir -p /model/5stems \ | ||
&& wget -O /tmp/5stems.tar.gz https://github.com/deezer/spleeter/releases/download/v1.4.0/5stems.tar.gz \ | ||
&& tar -xvzf /tmp/5stems.tar.gz -C /model/5stems/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
FROM python:3.6 | ||
|
||
RUN apt-get update && apt-get install -y ffmpeg libsndfile | ||
RUN pip install spleeter | ||
RUN mkdir -p /model | ||
ENV MODEL_PATH /model | ||
ENTRYPOINT ["spleeter"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM deezer/spleeter:3.7 | ||
|
||
RUN mkdir -p /model/2stems \ | ||
&& wget -O /tmp/2stems.tar.gz https://github.com/deezer/spleeter/releases/download/v1.4.0/2stems.tar.gz \ | ||
&& tar -xvzf /tmp/2stems.tar.gz -C /model/2stems/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM deezer/spleeter:3.7 | ||
|
||
RUN mkdir -p /model/4stems \ | ||
&& wget -O /tmp/4stems.tar.gz https://github.com/deezer/spleeter/releases/download/v1.4.0/4stems.tar.gz \ | ||
&& tar -xvzf /tmp/4stems.tar.gz -C /model/4stems/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM deezer/spleeter:3.7 | ||
|
||
RUN mkdir -p /model/5stems \ | ||
&& wget -O /tmp/5stems.tar.gz https://github.com/deezer/spleeter/releases/download/v1.4.0/5stems.tar.gz \ | ||
&& tar -xvzf /tmp/5stems.tar.gz -C /model/5stems/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
FROM python:3.7 | ||
|
||
RUN apt-get update && apt-get install -y ffmpeg libsndfile | ||
RUN pip install spleeter | ||
RUN mkdir -p /model | ||
ENV MODEL_PATH /model | ||
ENTRYPOINT ["spleeter"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM deezer/spleeter:conda-gpu | ||
|
||
RUN mkdir -p /model/2stems \ | ||
&& wget -O /tmp/2stems.tar.gz https://github.com/deezer/spleeter/releases/download/v1.4.0/2stems.tar.gz \ | ||
&& tar -xvzf /tmp/2stems.tar.gz -C /model/2stems/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM deezer/spleeter:conda-gpu | ||
|
||
RUN mkdir -p /model/4stems \ | ||
&& wget -O /tmp/4stems.tar.gz https://github.com/deezer/spleeter/releases/download/v1.4.0/4stems.tar.gz \ | ||
&& tar -xvzf /tmp/4stems.tar.gz -C /model/4stems/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM deezer/spleeter:conda-gpu | ||
|
||
RUN mkdir -p /model/5stems \ | ||
&& wget -O /tmp/5stems.tar.gz https://github.com/deezer/spleeter/releases/download/v1.4.0/5stems.tar.gz \ | ||
&& tar -xvzf /tmp/5stems.tar.gz -C /model/5stems/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
FROM continuumio/miniconda3:4.7.10 | ||
|
||
RUN conda install -y ipython \ | ||
&& conda install -y tensorflow-gpu==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"] |