Created
May 26, 2016 15:29
-
-
Save Nainterceptor/8793f6cb850923d1e7c953aa8554c572 to your computer and use it in GitHub Desktop.
Quick & dirty hack to get NodeJS 6 on AWS Elastic BeanStalk
This file contains 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
option_settings: | |
- namespace: aws:elasticbeanstalk:container:nodejs | |
option_name: NodeCommand | |
value: "npm start" | |
- namespace: aws:elasticbeanstalk:container:nodejs | |
option_name: NodeVersion | |
value: "4.4.3" | |
commands: | |
050-node-script-installer: | |
command: "curl --silent --location https://rpm.nodesource.com/setup_6.x | sudo bash -" | |
test: "[ ! -x /usr/bin/node ]" | |
075-install_nodeJS: | |
command: "yum -y install nodejs gcc-c++ make" | |
test: "[ ! -x /usr/bin/node ]" | |
100-replace-node: | |
command: "mv node node.old && ln -s /usr/bin/node node" | |
cwd: "/opt/elasticbeanstalk/node-install/node-v4.4.3-linux-x64/bin" | |
test: "[ ! -x /opt/elasticbeanstalk/node-install/node-v4.4.3-linux-x64/bin/node.old ]" | |
100-replace-npm: | |
command: "mv npm npm.old && ln -s /usr/bin/npm npm" | |
cwd: "/opt/elasticbeanstalk/node-install/node-v4.4.3-linux-x64/bin" | |
test: "[ ! -x /opt/elasticbeanstalk/node-install/node-v4.4.3-linux-x64/bin/npm.old ]" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment