From 6fbd59d730ec9728926371f6100900cfe3e02e9f Mon Sep 17 00:00:00 2001 From: Frans de Jonge Date: Thu, 9 Sep 2021 10:46:37 +0200 Subject: [PATCH] Switch to pip Supervisor install no longer works otherwise. --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index d410711..7858a7a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,12 +26,11 @@ RUN apt-get -yqq update && \ apt-get -yqq install curl unzip && \ apt-get -yqq install xvfb tinywm && \ apt-get -yqq install fonts-ipafont-gothic xfonts-100dpi xfonts-75dpi xfonts-scalable xfonts-cyrillic && \ - apt-get -yqq install python && \ + apt-get -yqq install python python-pip && \ rm -rf /var/lib/apt/lists/* # Install Supervisor -RUN curl -sS -o - https://bootstrap.pypa.io/ez_setup.py | python && \ - easy_install -q supervisor +RUN pip install supervisor # Install Chrome WebDriver RUN CHROMEDRIVER_VERSION=`curl -sS chromedriver.storage.googleapis.com/LATEST_RELEASE` && \