From aeeeca75eba77274ac905cbb5a2ece0da32c6209 Mon Sep 17 00:00:00 2001 From: Shish Date: Sat, 30 Dec 2023 13:26:19 +0000 Subject: [PATCH] [docker] add ffprobe too --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 25b835ff..0f797161 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ ARG PHP_VERSION=8.2 # Install base packages which all stages (build, test, run) need FROM debian:bookworm AS base -COPY --from=mwader/static-ffmpeg:6.1 /ffmpeg /usr/local/bin/ +COPY --from=mwader/static-ffmpeg:6.1 /ffmpeg /ffprobe /usr/local/bin/ RUN apt update && \ apt upgrade -y && \ apt install -y curl && \