From 10554a2ff4b74461811ca2a825c35e79c1f2d720 Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Sat, 3 Jan 2026 19:32:20 -0500 Subject: [PATCH] Properly add ffmpeg to the dockerfile install sequence --- Dockerfile | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index bc11526..ba631e4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ ENV DEBIAN_FRONTEND=noninteractive # Install system dependencies RUN apt-get update && \ apt-get upgrade -y && \ - apt-get install git pulseaudio pulseaudio-utils liquidsoap -y + apt-get install git pulseaudio pulseaudio-utils liquidsoap ffmpeg -y # Clone the boatbod op25 repository RUN git clone -b gr310 https://github.com/boatbod/op25 /op25 @@ -37,11 +37,6 @@ VOLUME ["/configs"] # Create the calls local cache directory VOLUME ["/calls"] - -##### REMOVE ME OR PROPERLY ADD IF WORKS -RUN apt-get install ffmpeg -y -##### REMOVE ME OR PROPERLY ADD IF WORKS - # Set the working directory in the container WORKDIR /app