3 changed files with 19 additions and 29 deletions
@ -0,0 +1,12 @@
|
||||
# Dockerfile for building ZeroTier Central Controllers |
||||
FROM centos:8 as builder |
||||
MAINTAINER Adam Ierymekno <adam.ierymenko@zerotier.com>, Grant Limberg <grant.limberg@zerotier.com> |
||||
|
||||
ARG git_branch=master |
||||
|
||||
RUN yum update -y |
||||
RUN yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm |
||||
RUN dnf -qy module disable postgresql |
||||
RUN yum -y install epel-release && yum -y update && yum clean all |
||||
RUN yum groupinstall -y "Development Tools" && yum clean all |
||||
RUN yum install -y bash cmake postgresql10 postgresql10-devel clang jemalloc jemalloc-devel libpqxx libpqxx-devel && yum clean all |
||||
@ -0,0 +1,5 @@
|
||||
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 |
||||
RUN dnf -qy module disable postgresql |
||||
RUN yum -y install epel-release && yum -y update && yum clean all |
||||
RUN yum install -y jemalloc jemalloc-devel postgresql10 libpqxx && yum clean all |
||||
Loading…
Reference in new issue