From 0e096492623fe842e1cd1020b2a4378f293cb43e Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Sun, 24 Nov 2024 09:22:18 -0700 Subject: [PATCH] Move deps --- docker/main/Dockerfile | 1 - docker/main/install_deps.sh | 4 +++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docker/main/Dockerfile b/docker/main/Dockerfile index fe1451739..9d2f442f0 100644 --- a/docker/main/Dockerfile +++ b/docker/main/Dockerfile @@ -158,7 +158,6 @@ RUN apt-get -qq update \ gfortran openexr libatlas-base-dev libssl-dev\ libtbb2 libtbb-dev libdc1394-22-dev libopenexr-dev \ libgstreamer-plugins-base1.0-dev libgstreamer1.0-dev \ - libgl1 libglib2.0-0 \ # sqlite3 dependencies tclsh \ # scipy dependencies diff --git a/docker/main/install_deps.sh b/docker/main/install_deps.sh index 6c32ae168..af349fd84 100755 --- a/docker/main/install_deps.sh +++ b/docker/main/install_deps.sh @@ -16,7 +16,9 @@ apt-get -qq install --no-install-recommends -y \ curl \ lsof \ jq \ - nethogs + nethogs \ + libgl1 \ + libglib2.0-0 # ensure python3 defaults to python3.9 update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.9 1