From e66ff46e549477ecf092e25656502550ed3e1a55 Mon Sep 17 00:00:00 2001 From: Mark Towers Date: Thu, 8 Jun 2023 15:01:38 +0100 Subject: [PATCH] Install swig in docker (#547) --- bin/all-py.Dockerfile | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/bin/all-py.Dockerfile b/bin/all-py.Dockerfile index 2d1b98840..2ef303edf 100644 --- a/bin/all-py.Dockerfile +++ b/bin/all-py.Dockerfile @@ -6,13 +6,8 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"] RUN apt-get -y update \ && apt-get install --no-install-recommends -y \ - unzip \ - libglu1-mesa-dev \ - libgl1-mesa-dev \ - libosmesa6-dev \ - xvfb \ - patchelf \ - ffmpeg cmake \ + libglu1-mesa-dev libgl1-mesa-dev libosmesa6-dev \ + xvfb unzip patchelf ffmpeg cmake swig \ && apt-get autoremove -y \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* \