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