mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-02-01 08:48:01 +00:00
14 lines
366 B
Docker
14 lines
366 B
Docker
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 http-parser-devel lz4-devel libnatpmp-devel
|
|
RUN yum install -y clang
|
|
RUN yum install -y gcc-c++
|
|
RUN yum install -y tar
|
|
|
|
RUN yum install -y nodejs npm
|
|
|
|
ADD zt1-src.tar.gz /
|