2016-06-25 14:04:08 -07:00
|
|
|
FROM centos:6
|
|
|
|
MAINTAINER Adam Ierymenko <adam.ierymenko@zerotier.com>
|
|
|
|
|
|
|
|
RUN yum update -y
|
|
|
|
RUN yum install -y epel-release
|
2016-06-25 16:27:28 -07:00
|
|
|
RUN yum install -y make development-tools rpmdevtools http-parser-devel lz4-devel libnatpmp-devel
|
2016-06-25 14:04:08 -07:00
|
|
|
|
2016-06-25 16:27:28 -07:00
|
|
|
RUN yum install -y centos-release-scl
|
|
|
|
RUN yum install -y devtoolset-4-gcc-c++
|
|
|
|
|
|
|
|
RUN ln -sf /opt/rh/devtoolset-4/root/usr/bin/gcc /usr/bin/gcc
|
|
|
|
RUN ln -sf /opt/rh/devtoolset-4/root/usr/bin/g++ /usr/bin/g++
|
2016-06-25 14:04:08 -07:00
|
|
|
|
2016-06-25 16:27:28 -07:00
|
|
|
ADD zt1-src.tar.gz /
|