Skip to content

Instantly share code, notes, and snippets.

View tpiros's full-sized avatar
🤽‍♂️

Tamas Piros tpiros

🤽‍♂️
View GitHub Profile
FROM centos:centos6
RUN yum -y update
RUN yum -y groupinstall "Development Tools"
RUN yum install -y wget
RUN yum install -y tar
RUN cd /usr/src && wget https://nodejs.org/dist/v0.12.0/node-v0.12.0-linux-x64.tar.gz && \
tar zxf node-v0.12.0-linux-x64.tar.gz && \
cp -rp node-v0.12.0-linux-x64 /usr/local/ && \