|
|
|
@ -20,7 +20,15 @@ RUN sed -i "/etc/yum.repos.d/rpmbuild.repo" -e "s|\${ARCH}|${ARCH}|g" -e "s|\${T
|
|
|
|
|
# Fix utempter detection
|
|
|
|
|
RUN chmod a+r /usr/libexec/utempter/utempter
|
|
|
|
|
|
|
|
|
|
RUN chmod 777 /tmp
|
|
|
|
|
|
|
|
|
|
# Add non-root user to build packages
|
|
|
|
|
RUN useradd -m -s /bin/bash -u 1000 trinity \
|
|
|
|
|
&& echo "trinity ALL=(ALL) NOPASSWD: ALL" >>/etc/sudoers
|
|
|
|
|
|
|
|
|
|
USER trinity
|
|
|
|
|
COPY rpmmacros /home/trinity/.rpmmacros
|
|
|
|
|
|
|
|
|
|
RUN rpm -i http://ftp.free.fr/mirrors/fedora.redhat.com/fedora/linux/releases/33/Everything/source/tree/Packages/p/python-exif-2.2.1-1.fc33.src.rpm \
|
|
|
|
|
&& rpmbuild -ba ${HOME}/rpmbuild/SPECS/python-exif.spec --define "py2 1" \
|
|
|
|
|
&& sudo rpm -Uvh ${HOME}/rpmbuild/RPMS/noarch/python2-exif-*
|
|
|
|
|