From 7c1b6cf896695799c298ec447eede6507ed0c8e9 Mon Sep 17 00:00:00 2001 From: Moritz Maxeiner <mm@ucw.sh> Date: Thu, 25 Jun 2020 12:57:27 +0200 Subject: [PATCH] Add some runtime dependencies --- ubuntu/Dockerfile | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/ubuntu/Dockerfile b/ubuntu/Dockerfile index 87bc5d5..5f3d4c1 100644 --- a/ubuntu/Dockerfile +++ b/ubuntu/Dockerfile @@ -23,13 +23,25 @@ RUN apt-get update && \ file \ nano && \ apt-get install -y \ - ffmpeg \ - python3.7 \ - python3.7-venv \ python3-pip \ python3-setuptools \ python3-distutils && \ apt-get clean +RUN apt-get update && \ + apt-get install -y \ + libglu1-mesa \ + libjpeg62 \ + liborc-0.4 \ + ffmpeg \ + && \ + apt-get clean + +RUN apt-get install -y \ + python3.7 \ + python3.7-dev \ + python3.7-venv && \ + apt-get clean + ADD agki-nas01.imp.fu-berlin.de-ca-cert.crt /usr/local/share/ca-certificates/agki-nas01.imp.fu-berlin.de-ca-cert.crt RUN update-ca-certificates -- GitLab