Created
December 4, 2018 16:14
-
-
Save diasjorge/4d42e8a42f37d3dff04e8e0fd6421a42 to your computer and use it in GitHub Desktop.
Dockerfile for serverless python builds
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM amazonlinux:1 | |
RUN mkdir /var/task | |
RUN yum install -y python27-pip | |
RUN pip install -U pip | |
WORKDIR /var/task |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment