From 700a8cb54a3ec42904de7cc71e926d52e32b87bb Mon Sep 17 00:00:00 2001 From: simon Date: Tue, 25 Oct 2022 12:13:11 +0700 Subject: [PATCH] remove leftover ffmpeg binary --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fbde035..57a9781 100644 --- a/Dockerfile +++ b/Dockerfile @@ -47,7 +47,8 @@ RUN if [ "$TARGETPLATFORM" = "linux/arm64" ] ; then \ | xargs curl -L --output ffmpeg.tar.xz ; \ fi && \ tar -xf ffmpeg.tar.xz --strip-components=2 --no-anchored -C /usr/bin/ "ffmpeg" && \ - tar -xf ffmpeg.tar.xz --strip-components=2 --no-anchored -C /usr/bin/ "ffprobe" + tar -xf ffmpeg.tar.xz --strip-components=2 --no-anchored -C /usr/bin/ "ffprobe" && \ + rm ffmpeg.tar.xz # install debug tools for testing environment RUN if [ "$INSTALL_DEBUG" ] ; then \