You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
988 B
28 lines
988 B
FROM centos:7
|
|
|
|
ARG TDE_VERSION=14.0.4
|
|
ARG ARCH=x86_64
|
|
|
|
# Add EPEL repository
|
|
RUN rpm -Uvh http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-10.noarch.rpm
|
|
|
|
# Add NUX repository
|
|
RUN rpm -Uvh http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-5.el7.nux.noarch.rpm
|
|
|
|
# Install Trinity build dependencies
|
|
ADD packages /etc/yum.repos.d/packages
|
|
RUN yum update -y
|
|
RUN yum install -y $(</etc/yum.repos.d/packages)
|
|
|
|
# Add YUM repository for locally built packages
|
|
ADD rpmbuild.repo /etc/yum.repos.d/rpmbuild.repo
|
|
RUN sed -i "/etc/yum.repos.d/rpmbuild.repo" -e "s|\${ARCH}|${ARCH}|g" -e "s|\${TDE_VERSION}|${TDE_VERSION}|g"
|
|
|
|
# Add non-root user to build packages
|
|
RUN useradd -m -s /bin/bash -u 1000 trinity
|
|
RUN echo "trinity ALL=(ALL) NOPASSWD: ALL" >>/etc/sudoers
|
|
ADD rpmmacros /home/trinity/.rpmmacros
|
|
|
|
# Distro-specific patches
|
|
RUN sed -i "/usr/include/jasper/jas_math.h" -e "/#include <stdint.h>/ s|$|\n#ifndef SIZE_MAX\n#define SIZE_MAX ((size_t) -1)\n#endif\n|"
|