Skip to content

Commit 3e38710

Browse files
committed
ffmpeg 7
1 parent 753a993 commit 3e38710

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ RUN export BUILD=$(if [ "$TARGETPLATFORM" = "linux/amd64" ] ; then echo "amd64";
1717
python3 -m venv /opt/venv && \
1818
/opt/venv/bin/pip install --upgrade pip setuptools && \
1919
/opt/venv/bin/pip install --no-cache-dir pyssim OpenCV-Python Numpy image && \
20-
wget https://johnvansickle.com/ffmpeg/old-releases/ffmpeg-5.1.1-$BUILD-static.tar.xz && \
21-
tar --strip-components 1 -C /usr/bin -xf ffmpeg-5.1.1-$BUILD-static.tar.xz --wildcards ffmpeg*/ff* && \
22-
rm ffmpeg-5.1.1-$BUILD-static.tar.xz && \
20+
wget https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-$BUILD-static.tar.xz && \
21+
tar --strip-components 1 -C /usr/bin -xf ffmpeg-$BUILD-static.tar.xz --wildcards ffmpeg*/ff* && \
22+
rm ffmpeg-$BUILD-static.tar.xz && \
2323
apt-get purge -y --auto-remove $buildDeps
2424

2525
ENV PATH="/opt/venv/bin:${PATH}"

0 commit comments

Comments
 (0)