Update ffmpeg link

This commit is contained in:
Sillyfrog 2019-03-30 23:12:41 +10:00
parent f46b8b2dba
commit 67c5ffb7d7
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ WORKDIR /opt/octoprint
#install ffmpeg
RUN cd /tmp \
&& wget -O ffmpeg.tar.xz https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-32bit-static.tar.xz \
&& wget -O ffmpeg.tar.xz https://www.johnvansickle.com/ffmpeg/old-releases/ffmpeg-4.0.3-32bit-static.tar.xz \
&& mkdir -p /opt/ffmpeg \
&& tar xvf ffmpeg.tar.xz -C /opt/ffmpeg --strip-components=1 \
&& rm -Rf /tmp/*