From 604c0108d600b0fab987404d0e4f3f642757e4a4 Mon Sep 17 00:00:00 2001 From: Ted de vaal Date: Thu, 12 Oct 2017 14:22:19 +0200 Subject: [PATCH] Upgrade Elastic Beanstalk CLI to version 3.11.0 --- Dockerfile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7c5d0ba..a2d132c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,9 +12,13 @@ RUN add-apt-repository -y ppa:chris-lea/node.js && \ ca-certificates \ python-dev \ curl; - -RUN pip install awsebcli awscli; +# Install setuptools +RUN curl https://bootstrap.pypa.io/ez_setup.py | python && \ + pip install -U pip setuptools; + +# Install EB cli version 3.11.0 +RUN pip install awsebcli==3.11.0 awscli; # Force NVM_DIR so the installations go to the right place ENV NVM_DIR /root/.nvm