We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca798f1 commit 6f6fdf3Copy full SHA for 6f6fdf3
1 file changed
Web/Resgrid.Web.Tts/Dockerfile
@@ -32,6 +32,9 @@ RUN apt-get update \
32
xz-utils \
33
&& rm -rf /var/lib/apt/lists/* \
34
&& curl -fsSL --retry 3 --retry-delay 5 "https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz" -o /tmp/ffmpeg.tar.xz \
35
+ && curl -fsSL "https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz.md5" -o /tmp/ffmpeg.tar.xz.md5 \
36
+ && echo "$(awk '{print $1}' /tmp/ffmpeg.tar.xz.md5) /tmp/ffmpeg.tar.xz" | md5sum -c - \
37
+ && rm -f /tmp/ffmpeg.tar.xz.md5 \
38
&& tar -xf /tmp/ffmpeg.tar.xz -C /tmp \
39
&& mkdir -p /usr/local/bin \
40
&& ffmpeg_path=$(find /tmp -name 'ffmpeg' -type f -executable -not -path '*/lib/*' -print -quit) \
0 commit comments