From f20e472bfba00cbb9b24818311b697b344782d66 Mon Sep 17 00:00:00 2001 From: Oleg Dubyk <29858576+odubyk@users.noreply.github.com> Date: Tue, 4 Sep 2018 17:48:51 +0300 Subject: [PATCH] python 3.6 (#22) --- default/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/default/Dockerfile b/default/Dockerfile index 4bc385d..b2e8caf 100644 --- a/default/Dockerfile +++ b/default/Dockerfile @@ -1,4 +1,4 @@ -FROM amazonlinux:with-sources +FROM amazonlinux:2017.09-with-sources LABEL maintainer="Jared Short " RUN yum update -y @@ -9,14 +9,14 @@ RUN yum -y install \ jq \ nodejs \ openssl-devel \ - python-devel.x86_64 \ - python3-devel \ + python27-devel.x86_64 \ + python36-devel \ gcc \ zlib-devel # install pip + aws cli RUN curl -O https://bootstrap.pypa.io/get-pip.py && \ - python get-pip.py + python3 get-pip.py RUN pip install awscli --upgrade RUN pip install aws-sam-cli