From 7ce9d27a67cfcb17da2335f6f6c49f81ed558157 Mon Sep 17 00:00:00 2001 From: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com> Date: Sun, 19 Dec 2021 19:20:20 -0500 Subject: [PATCH] Update Dockerfile-ubuntu_18_04 -Add ffmpeg --- scripts/Dockerfile-ubuntu_18_04 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/Dockerfile-ubuntu_18_04 b/scripts/Dockerfile-ubuntu_18_04 index bff3432f..75662174 100644 --- a/scripts/Dockerfile-ubuntu_18_04 +++ b/scripts/Dockerfile-ubuntu_18_04 @@ -14,10 +14,14 @@ RUN apt-get update -y && \ && wget -qO - https://apt.kitware.com/keys/kitware-archive-latest.asc | apt-key add - && \ add-apt-repository 'deb https://apt.kitware.com/ubuntu/ bionic main' && \ add-apt-repository ppa:ubuntu-toolchain-r/test && \ + add-apt-repository ppa:savoury1/graphics && \ + add-apt-repository ppa:savoury1/multimedia && \ + add-apt-repository ppa:savoury1/ffmpeg4 && \ apt-get update -y && \ apt-get install -y \ build-essential \ cmake \ + ffmpeg \ gcc-10 \ git \ g++-10 \