Created
January 20, 2017 15:53
-
-
Save carlozamagni/54722800f889979797e0cdc2867a941b to your computer and use it in GitHub Desktop.
Dockerfile for centos6-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 centos:centos6 | |
RUN yum install -y gcc-c++ make | |
RUN curl -sL https://rpm.nodesource.com/setup_6.x | bash - | |
RUN yum -y update && yum -y install nodejs | |
CMD node -v | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment