blob: 3b764d2822506cc6cb631818424b125855c51862 (
plain)
1
2
3
4
5
6
7
8
9
10
|
FROM centos:7
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 http-parser-devel lz4-devel libnatpmp-devel
RUN yum install -y clang gcc-c++
ADD zt1-src.tar.gz /
|