Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Web/Resgrid.Web.Tts/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ RUN apt-get update \
curl \
xz-utils \
&& rm -rf /var/lib/apt/lists/* \
&& curl -fsSL --retry 3 --retry-delay 5 "https://github.com/BtbN/FFmpeg-Builds/releases/download/latest/ffmpeg-master-latest-linux64-gpl.tar.xz" -o /tmp/ffmpeg.tar.xz \
&& curl -fsSL --retry 3 --retry-delay 5 "https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz" -o /tmp/ffmpeg.tar.xz \
&& tar -xf /tmp/ffmpeg.tar.xz -C /tmp \
Comment thread
coderabbitai[bot] marked this conversation as resolved.
&& mkdir -p /usr/local/bin \
&& cp /tmp/ffmpeg-master-latest-linux64-gpl/bin/ffmpeg /usr/local/bin/ffmpeg \
&& cp /tmp/ffmpeg-master-latest-linux64-gpl/bin/ffprobe /usr/local/bin/ffprobe \
&& find /tmp -name 'ffmpeg' -type f -not -path '*/lib/*' -exec cp {} /usr/local/bin/ffmpeg \; \
&& find /tmp -name 'ffprobe' -type f -not -path '*/lib/*' -exec cp {} /usr/local/bin/ffprobe \; \
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated
&& chmod +x /usr/local/bin/ffmpeg /usr/local/bin/ffprobe \
&& rm -rf /tmp/ffmpeg* \
&& mkdir -p /usr/local/share/piper-voices \
Expand Down
Loading