Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down