You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
368 B
13 lines
368 B
FROM toopher/centos-i386:centos6 |
|
MAINTAINER Adam Ierymenko <adam.ierymenko@zerotier.com> |
|
|
|
RUN yum update -y |
|
RUN yum install -y epel-release |
|
RUN yum install -y make development-tools rpmdevtools clang gcc-c++ tar |
|
|
|
RUN yum install -y nodejs npm |
|
|
|
# Stop use of http-parser-devel which is installed by nodejs/npm |
|
RUN rm -f /usr/include/http_parser.h |
|
|
|
ADD zt1-src.tar.gz /
|
|
|