From a6cfdb4d5a7d0a673ce881788217ae2a6c943495 Mon Sep 17 00:00:00 2001 From: joshr Date: Mon, 23 Apr 2018 01:29:31 -0400 Subject: [PATCH] use pip 10.0.1 --- .Dockerfiles/alpine/latest/Dockerfile | 2 +- .Dockerfiles/centos/latest/Dockerfile | 2 +- .Dockerfiles/debian/latest/Dockerfile | 2 +- .Dockerfiles/fedora/latest/Dockerfile | 2 +- .Dockerfiles/ubuntu/latest/Dockerfile | 2 +- .Dockerfiles/ubuntu/rolling/Dockerfile | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.Dockerfiles/alpine/latest/Dockerfile b/.Dockerfiles/alpine/latest/Dockerfile index 95d77b11..46fa929f 100644 --- a/.Dockerfiles/alpine/latest/Dockerfile +++ b/.Dockerfiles/alpine/latest/Dockerfile @@ -21,7 +21,7 @@ RUN apk add --no-cache --update \ rsyslog \ sudo \ xz \ - && pip install --upgrade pip==9.0.3 \ + && pip install --upgrade pip==10.0.1 \ && if ! getent passwd <%= @username %>; then \ adduser -h /home/<%= @username %> -s /bin/bash -D <%= @username %>; \ passwd -d <%= @username %>; \ diff --git a/.Dockerfiles/centos/latest/Dockerfile b/.Dockerfiles/centos/latest/Dockerfile index acd1ff39..00010823 100644 --- a/.Dockerfiles/centos/latest/Dockerfile +++ b/.Dockerfiles/centos/latest/Dockerfile @@ -21,7 +21,7 @@ RUN yum clean all \ redhat-rpm-config \ sudo \ systemd \ - && pip install --upgrade pip==9.0.3 \ + && pip install --upgrade pip==10.0.1 \ && yum clean all \ && if ! getent passwd <%= @username %>; then \ useradd -d /home/<%= @username %> -m -s /usr/bin/bash -p '*' <%= @username %>; \ diff --git a/.Dockerfiles/debian/latest/Dockerfile b/.Dockerfiles/debian/latest/Dockerfile index 6366b870..009acdca 100644 --- a/.Dockerfiles/debian/latest/Dockerfile +++ b/.Dockerfiles/debian/latest/Dockerfile @@ -15,7 +15,7 @@ RUN apt-get update \ python2.7 \ sudo \ systemd \ - && pip install --upgrade pip==9.0.3 \ + && pip install --upgrade pip==10.0.1 \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \ && if ! getent passwd <%= @username %>; then \ diff --git a/.Dockerfiles/fedora/latest/Dockerfile b/.Dockerfiles/fedora/latest/Dockerfile index b4f7879d..98909815 100644 --- a/.Dockerfiles/fedora/latest/Dockerfile +++ b/.Dockerfiles/fedora/latest/Dockerfile @@ -19,7 +19,7 @@ RUN dnf clean all \ redhat-rpm-config \ sudo \ systemd \ - && pip install --upgrade pip==9.0.3 \ + && pip install --upgrade pip==10.0.1 \ && dnf clean all \ && if ! getent passwd <%= @username %>; then \ useradd -d /home/<%= @username %> -m -s /usr/bin/bash -p '*' <%= @username %>; \ diff --git a/.Dockerfiles/ubuntu/latest/Dockerfile b/.Dockerfiles/ubuntu/latest/Dockerfile index 3e807603..7a41c62e 100644 --- a/.Dockerfiles/ubuntu/latest/Dockerfile +++ b/.Dockerfiles/ubuntu/latest/Dockerfile @@ -15,7 +15,7 @@ RUN apt-get update \ python2.7 \ sudo \ systemd \ - && pip install --upgrade pip==9.0.3 \ + && pip install --upgrade pip==10.0.1 \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \ && if ! getent passwd <%= @username %>; then \ diff --git a/.Dockerfiles/ubuntu/rolling/Dockerfile b/.Dockerfiles/ubuntu/rolling/Dockerfile index e5293237..3af3ed08 100644 --- a/.Dockerfiles/ubuntu/rolling/Dockerfile +++ b/.Dockerfiles/ubuntu/rolling/Dockerfile @@ -16,7 +16,7 @@ RUN apt-get update \ python2.7 \ sudo \ systemd \ - && pip install --upgrade pip==9.0.3 \ + && pip install --upgrade pip==10.0.1 \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \ && if ! getent passwd <%= @username %>; then \