From a1c137b868d62458c96f7c34dc47ee9a4e63255d Mon Sep 17 00:00:00 2001 From: Stephen Donner Date: Fri, 10 Aug 2018 00:36:54 -0700 Subject: [PATCH 1/2] Update to tox 3.2.0 and remove python-dev package --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 579d3bc..8059d06 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN apt-get update \ && apt-get install -y software-properties-common \ && add-apt-repository ppa:deadsnakes/ppa \ && apt-get update \ - && apt-get install -y bzip2 curl firefox git python2.7 python-dev python3.6 python3-pip \ + && apt-get install -y bzip2 curl firefox git python2.7 python3.6 python3-pip \ && rm -rf /var/lib/apt/lists/* ENV FIREFOX_VERSION=61.0 @@ -30,7 +30,7 @@ RUN curl -fsSLo /tmp/geckodriver.tar.gz https://github.com/mozilla/geckodriver/r && chmod 755 /opt/geckodriver-$GECKODRIVER_VERSION \ && ln -fs /opt/geckodriver-$GECKODRIVER_VERSION /usr/bin/geckodriver -ENV TOX_VERSION=3.1.1 +ENV TOX_VERSION=3.2.0 RUN pip3 install tox==$TOX_VERSION ADD . /src From 6ab513bbac0a7a59cd9709ddfe359e4d23c1e70b Mon Sep 17 00:00:00 2001 From: Stephen Donner Date: Fri, 10 Aug 2018 11:23:05 -0700 Subject: [PATCH 2/2] Leave python-dev package in --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8059d06..1562c4e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN apt-get update \ && apt-get install -y software-properties-common \ && add-apt-repository ppa:deadsnakes/ppa \ && apt-get update \ - && apt-get install -y bzip2 curl firefox git python2.7 python3.6 python3-pip \ + && apt-get install -y bzip2 curl firefox git python2.7 python-dev python3.6 python3-pip \ && rm -rf /var/lib/apt/lists/* ENV FIREFOX_VERSION=61.0