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.
33 lines
1001 B
33 lines
1001 B
6 years ago
|
FROM pclinuxos:2017
|
||
|
|
||
|
ARG TDE_VERSION=14.0.5
|
||
|
ARG ARCH=x86_64
|
||
|
|
||
|
# Update distribution
|
||
|
RUN apt-get -y update
|
||
|
RUN apt-get -y dist-upgrade
|
||
|
|
||
|
# Install Trinity build dependencies
|
||
|
ADD packages.${ARCH} /packages
|
||
|
RUN apt-get -y install $(</packages)
|
||
|
|
||
|
# Add rpmbuild repositories
|
||
|
ADD rpmbuild.list /etc/apt/sources.list.d/rpmbuild.list
|
||
|
RUN sed -i "/etc/apt/sources.list.d/rpmbuild.list" -e "s|\${ARCH}|${ARCH}|g" -e "s|\${TDE_VERSION}|${TDE_VERSION}|g"
|
||
|
|
||
|
# Add non-root user to build packages
|
||
|
RUN rm -rf /home/trinity
|
||
|
RUN useradd -m -s /bin/bash -u 1000 trinity
|
||
|
RUN echo "trinity ALL=(ALL) NOPASSWD: ALL" >>/etc/sudoers
|
||
|
ADD rpmmacros /home/trinity/.rpmmacros
|
||
|
|
||
|
# Fix SUDO configuration
|
||
|
RUN sed -i "/etc/pam.d/sudo" -e "/pam_limits.so/ s|^|#|"
|
||
|
|
||
|
# Fix missing '.la' files
|
||
|
ADD genla.sh /usr/bin/genla.sh
|
||
|
RUN genla.sh libbluetooth && mv /usr/lib64/libbluetooth.la /lib64
|
||
|
RUN genla.sh libjpeg
|
||
|
RUN genla.sh liblcms
|
||
|
RUN genla.sh libusb-1.0 && mv /usr/lib64/libusb-1.0.la /lib64 && cp /lib64/libusb-1.0.la /lib64/libusb.la
|