From 1c16e6dba926aaafe962fc7b16ae184eecf83202 Mon Sep 17 00:00:00 2001 From: Billy Earney Date: Mon, 3 Apr 2017 08:28:06 -0500 Subject: [PATCH] add ffmpeg soft link comment, remove unnecessary comment. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ae9cc44b2..9f1c93314 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,13 +18,13 @@ RUN pip install imageio numpy scipy matplotlib pandas sympy nose decorator tqdm # install scikit-image after the other deps, it doesn't cause errors this way. RUN pip install scikit-image sklearn -# install from github since there are bugs in latest versions. RUN git clone https://github.com/Zulko/moviepy.git /var/src/moviepy RUN cd /var/src/moviepy/ && python setup.py install # install ffmpeg from imageio. RUN python -c "import imageio; imageio.plugins.ffmpeg.download()" +#add soft link so that ffmpeg can executed (like usual) from command line RUN ln -s /root/.imageio/ffmpeg/ffmpeg.linux64 /usr/bin/ffmpeg # modify ImageMagick policy file so that Textclips work correctly.