From 576d439aff222e638911e8b117fad58fc3d17528 Mon Sep 17 00:00:00 2001 From: Petr Rybakov <25454223+pitfisher@users.noreply.github.com> Date: Tue, 8 Mar 2022 01:17:39 +0300 Subject: [PATCH] Updated ffmpeg download source URL for newer ffmpeg version (#369) This updates the version of FFmpeg used in pyCA's containers to support additional protocols. This uses the static binaries built by John Van Sickle. This fixes #368 --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 21b8af58..a4751343 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,8 +27,6 @@ RUN make pypi FROM alpine:3.13 LABEL maintainer="pyCA team" -ENV FFMPEG_VERSION="20210527041447-N-102608-g7a879cce37" - COPY --from=build /usr/local/src/dist/pyca-*.tar.gz /tmp/pyca.tar.gz RUN apk --no-cache --virtual .run-deps add \ @@ -54,7 +52,7 @@ RUN apk --no-cache --virtual .run-deps add \ gunicorn \ psycopg2 \ && cd /usr/local/bin \ - && curl -sSL "https://s3.opencast.org/opencast-ffmpeg-static/ffmpeg-${FFMPEG_VERSION}.tar.xz" \ + && curl -sSL "https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz" \ | tar xJf - --strip-components 1 --wildcards '*/ffmpeg' '*/ffprobe' \ && apk del .build-deps \ && rm -rf /tmp/pyca.tar.gz