From 9bea186008d6f15789e8c462931171ac6db75c8e Mon Sep 17 00:00:00 2001 From: Marian Steinbach Date: Fri, 4 May 2018 00:38:28 +0200 Subject: [PATCH] Clean up dependencies --- Dockerfile | 5 +---- requirements.txt | 11 ----------- 2 files changed, 1 insertion(+), 15 deletions(-) delete mode 100644 requirements.txt diff --git a/Dockerfile b/Dockerfile index 2f86831..70b2403 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,15 +12,12 @@ RUN apt-get update \ && wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb \ && dpkg -i google-chrome-stable_current_amd64.deb \ && rm google-chrome-stable_current_amd64.deb \ - && pip3 install GitPython idna PyYAML requests==2.18.4 selenium==3.11.0 smmap2==2.0.3 urllib3==1.22 certifi==2018.1.18 \ + && pip3 install GitPython idna PyYAML beautifulsoup4==4.6.0 requests==2.18.4 responses==0.9.0 selenium==3.11.0 smmap2==2.0.3 urllib3==1.22 certifi==2018.1.18 \ && wget https://chromedriver.storage.googleapis.com/2.38/chromedriver_linux64.zip \ && unzip chromedriver_linux64.zip \ && rm chromedriver_linux64.zip \ && apt-get clean -# TODO: move this into the above -RUN pip3 install beautifulsoup4==4.6.0 - RUN wget https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2 \ && tar xjf phantomjs-2.1.1-linux-x86_64.tar.bz2 \ && mv phantomjs-2.1.1-linux-x86_64/bin/phantomjs /usr/local/bin/ \ diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 8ed8559..0000000 --- a/requirements.txt +++ /dev/null @@ -1,11 +0,0 @@ -beautifulsoup4==4.6.0 -certifi==2018.1.18 -chardet==3.0.4 -gitdb2==2.0.3 -GitPython==2.1.9 -idna==2.6 -PyYAML==3.12 -requests==2.18.4 -selenium==3.11.0 -smmap2==2.0.3 -urllib3==1.22