From 8e23ec2d74d04a2c9f288b8a3cf60aedbc183e73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Socho=C5=84?= Date: Mon, 5 Nov 2018 10:50:32 -0800 Subject: [PATCH] Ensure Dockerfile uses more modern pip verison, freeze it to 18.1 (#37) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Ensure Dockerfile uses more modern pip verison, freeze it to 18.1 Signed-off-by: Michał Sochoń * Update Dockerfile Signed-off-by: Reinhard Nägele --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 146a7c0..bbc90d5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,8 @@ RUN apk --no-cache add \ openssh-client \ python \ py-crcmod \ - py-pip + py-pip && \ + pip install --upgrade pip==18.1 # Install YQ command line reader ARG YQ_VERSION=2.7.0