diff --git a/Dockerfile b/Dockerfile index e8be307..2bd8710 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,7 @@ FROM ubuntu:22.04 AS ffmpeg ENV DEBIAN_FRONTEND=noninteractive # Use script due local build compability COPY ffmpeg-fetch.sh . +RUN chmod +x ffmpeg-fetch.sh RUN sh ./ffmpeg-fetch.sh diff --git a/ffmpeg-fetch.sh b/ffmpeg-fetch.sh index 3b1ac78..6a169bf 100644 --- a/ffmpeg-fetch.sh +++ b/ffmpeg-fetch.sh @@ -26,7 +26,7 @@ apt-get update && apt-get -y install curl xz-utils echo "(2/5) DOWNLOAD - Acquire latest ffmpeg and ffprobe from John van Sickle's master-sourced builds in ffmpeg obtain layer" curl -o ffmpeg.txz \ --connect-timeout 5 \ - --max-time 10 \ + --max-time 120 \ --retry 5 \ --retry-delay 0 \ --retry-max-time 40 \