From b353b21a28f1ae843113e08b5ecfd128497498c8 Mon Sep 17 00:00:00 2001 From: Jared Short Date: Tue, 14 Aug 2018 15:46:06 -0400 Subject: [PATCH] Update Dockerfile --- default/Dockerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/default/Dockerfile b/default/Dockerfile index 6896e18..3b6459d 100644 --- a/default/Dockerfile +++ b/default/Dockerfile @@ -10,16 +10,18 @@ RUN yum -y install \ nodejs \ openssl-devel \ python-devel.x86_64 \ + python3-devel \ + gcc \ zlib-devel +# install python 3 +RUN amazon-linux-extras install python3 + # install pip + aws cli RUN curl -O https://bootstrap.pypa.io/get-pip.py && \ python get-pip.py RUN pip install awscli --upgrade RUN pip install aws-sam-cli -# install python 3 -RUN amazon-linux-extras install python3 - # update npm to latest version RUN npm install -g npm