From 0aaa51d1536514c8037ffc6ea14be88f7c6a01f7 Mon Sep 17 00:00:00 2001 From: Jared Short Date: Tue, 14 Aug 2018 15:18:04 -0400 Subject: [PATCH] Delete Dockerfile --- sam/Dockerfile | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 sam/Dockerfile diff --git a/sam/Dockerfile b/sam/Dockerfile deleted file mode 100644 index 6e2bd7b..0000000 --- a/sam/Dockerfile +++ /dev/null @@ -1,22 +0,0 @@ -FROM amazonlinux:with-sources -LABEL maintainer="Jared Short " - -RUN yum update -y -# add nodejs repo -RUN curl --silent --location https://rpm.nodesource.com/setup_8.x | bash - -RUN yum -y install \ - git \ - jq \ - openssl-devel \ - python-devel.x86_64 \ - python3-devel \ - gcc \ - zlib-devel - -# install pip + aws cli -RUN curl -O https://bootstrap.pypa.io/get-pip.py && \ - python get-pip.py -RUN pip install awscli --upgrade - -# install SAM cli -RUN pip install aws-sam-cli