Skip to content

Commit cf0241c

Browse files
authored
Merge pull request #387 from Resgrid/develop
RE1-T119 Build fix
2 parents 5fcb108 + b2942ab commit cf0241c

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

Web/Resgrid.Web.Tts/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,14 @@ RUN apt-get update \
3030
ca-certificates \
3131
curl \
3232
xz-utils \
33+
gzip \
3334
&& rm -rf /var/lib/apt/lists/* \
3435
&& curl -fsSL --retry 3 --retry-delay 5 "https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz" -o /tmp/ffmpeg.tar.xz \
3536
&& curl -fsSL "https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz.md5" -o /tmp/ffmpeg.tar.xz.md5 \
3637
&& echo "$(awk '{print $1}' /tmp/ffmpeg.tar.xz.md5) /tmp/ffmpeg.tar.xz" | md5sum -c - \
3738
&& rm -f /tmp/ffmpeg.tar.xz.md5 \
38-
&& tar -xJf /tmp/ffmpeg.tar.xz -C /tmp \
39+
&& xz -d /tmp/ffmpeg.tar.xz \
40+
&& tar -xf /tmp/ffmpeg.tar -C /tmp \
3941
&& mkdir -p /usr/local/bin \
4042
&& ffmpeg_path=$(find /tmp -name 'ffmpeg' -type f -executable -not -path '*/lib/*' -print -quit) \
4143
&& test -n "$ffmpeg_path" && cp "$ffmpeg_path" /usr/local/bin/ffmpeg \

0 commit comments

Comments
 (0)