From 4c2799a1f72ccd15ccbc71ee94a6265a16b63099 Mon Sep 17 00:00:00 2001 From: Hiromu Hota Date: Thu, 11 Apr 2019 11:52:55 -0700 Subject: [PATCH] Stop one of the duplicate matplotlib installations matplotlib can be installaed in three ways: pip, apt, build from source. (See https://matplotlib.org/users/installing.html) The current Dockerfile does both pip and apt, which is redundant. This patch stops the apt one. --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 76d3d0e7..62fcd723 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,6 @@ USER root RUN apt-get update && apt-get install -y \ libxml2-dev \ libxslt-dev \ - python-matplotlib \ poppler-utils \ postgresql-client \ libmagickwand-dev \