2019-08-26 19:19:50 +00:00
|
|
|
# Dockerfile for ZeroTier Central Controllers
|
2020-05-12 22:17:57 +00:00
|
|
|
FROM centos:8 as builder
|
2019-08-26 19:19:50 +00:00
|
|
|
MAINTAINER Adam Ierymekno <adam.ierymenko@zerotier.com>, Grant Limberg <grant.limberg@zerotier.com>
|
|
|
|
|
2019-11-20 21:56:26 +00:00
|
|
|
ARG git_branch=master
|
|
|
|
|
2019-08-26 19:19:50 +00:00
|
|
|
RUN yum update -y
|
2020-05-12 22:17:57 +00:00
|
|
|
RUN yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm && dnf -qy module disable postgresql
|
2019-08-26 19:19:50 +00:00
|
|
|
RUN yum -y install epel-release && yum -y update && yum clean all
|
2019-11-20 21:56:26 +00:00
|
|
|
RUN yum groupinstall -y "Development Tools"
|
2020-05-12 22:17:57 +00:00
|
|
|
RUN yum install -y bash postgresql10 postgresql10-devel libpqxx-devel clang jemalloc jemalloc-devel
|
2019-08-26 19:19:50 +00:00
|
|
|
|
2020-03-04 07:52:53 +00:00
|
|
|
# RUN git clone http://git.int.zerotier.com/zerotier/ZeroTierOne.git
|
|
|
|
# RUN if [ "$git_branch" != "master" ]; then cd ZeroTierOne && git checkout -b $git_branch origin/$git_branch; fi
|
|
|
|
ADD . /ZeroTierOne
|
|
|
|
RUN cd ZeroTierOne && make clean && make central-controller
|
2019-11-20 21:56:26 +00:00
|
|
|
|
2020-05-12 22:17:57 +00:00
|
|
|
FROM centos:8
|
|
|
|
RUN yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm && dnf -qy module disable postgresql && yum -y install epel-release && yum -y update && yum clean all
|
2020-02-24 19:02:05 +00:00
|
|
|
RUN yum install -y jemalloc jemalloc-devel postgresql10
|
2019-08-26 19:19:50 +00:00
|
|
|
|
2019-11-20 21:56:26 +00:00
|
|
|
COPY --from=builder /ZeroTierOne/zerotier-one /usr/local/bin/zerotier-one
|
2019-08-26 19:19:50 +00:00
|
|
|
RUN chmod a+x /usr/local/bin/zerotier-one
|
|
|
|
|
2019-11-20 21:56:26 +00:00
|
|
|
ADD ext/central-controller-docker/main.sh /
|
2019-08-26 19:19:50 +00:00
|
|
|
RUN chmod a+x /main.sh
|
|
|
|
|
|
|
|
ENTRYPOINT /main.sh
|