Created
February 22, 2017 16:50
-
-
Save gerrard00/ff6aec84bf390c470d56a0efc7f3731c to your computer and use it in GitHub Desktop.
Dockerfile for running a container that can be used to test AWS Lambda functions written in node
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 | |
RUN curl -O https://nodejs.org/dist/v4.3.0/node-v4.3.0-linux-x64.tar.gz | |
RUN tar --strip-components 1 -xzvf node-v* -C /usr/local | |
RUN rm node-v4.3.0-linux-x64.tar.gz | |
CMD ["/bin/bash"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment