Skip to content

Instantly share code, notes, and snippets.

@t-miya
Created October 3, 2017 08:35
Show Gist options
  • Save t-miya/fd90e5bd7602b915a05498ddfa4549d0 to your computer and use it in GitHub Desktop.
Save t-miya/fd90e5bd7602b915a05498ddfa4549d0 to your computer and use it in GitHub Desktop.
AWS Lambda 用に pip でモジュールを用意するための Dockerfile
FROM amazonlinux:2017.03
RUN true\
&& yum -q -e 0 -y update || true\
&& yum -q -e 0 -y install gcc python27-devel python27-pip || true\
&& pip install --upgrade pip || true\
&& pip install wheel || true\
&& yum -q -e 0 -y clean all
CMD [""]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment