From 6c532c8faaf72d9450be80cfae4f4a09d4a0697f Mon Sep 17 00:00:00 2001 From: Aneesh Karve Date: Fri, 3 Sep 2021 11:02:03 -0700 Subject: [PATCH] Clean whitespace, comments --- Dockerfile | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8f6d9c8..aeb1ef2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,16 +1,15 @@ FROM amazon/aws-lambda-python:3.8 + # Need to set "ulimit -n" to a small value to stop yum from hanging: # https://bugzilla.redhat.com/show_bug.cgi?id=1715254#c1 -# See the following for installing 3.8 via yum on amazon-linux -# https://techviewleo.com/how-to-install-python-on-amazon-linux/ RUN ulimit -n 1024 && yum -y update && yum -y install \ - git \ - gcc \ - jq \ - nano \ - unzip \ - zip \ - && yum clean all + git \ + gcc \ + jq \ + nano \ + unzip \ + zip \ + && yum clean all COPY requirements.txt quilt/requirements.txt