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.
|
|
|
FROM fedora32:29
|
|
|
|
|
|
|
|
ARG TDE_VERSION=14.1.0
|
|
|
|
ARG ARCH=i686
|
|
|
|
|
|
|
|
RUN echo "proxy=http://proxy:3128" >>"/etc/dnf.conf"
|
|
|
|
|
|
|
|
# Add RPMFUSION repository
|
|
|
|
RUN rpm -Uvh https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-29.noarch.rpm
|
|
|
|
|
|
|
|
# Install Trinity build dependencies
|
|
|
|
RUN setarch i686 dnf update -y
|
|
|
|
ADD packages /packages
|
|
|
|
RUN setarch i686 dnf install -y yum-plugin-ovl
|
|
|
|
RUN touch /var/lib/rpm/*
|
|
|
|
RUN setarch i686 dnf install -y $(</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
|