summaryrefslogtreecommitdiffstats
path: root/redhat/docker/oss155/Dockerfile.x86_64
blob: 394650a12dd6f637ccd810bbcb05e6b9fbe7f46f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
FROM opensuse/leap:15.5

ARG TDE_VERSION=14.1.2
ARG ARCH=x86_64

# Add PACKMAN repository
# Install Trinity build dependencies
COPY packages /packages
RUN set -x \
 && echo PROXY_ENABLED="YES" >>/etc/sysconfig/proxy \
 && echo HTTP_PROXY="http://proxy:3128/" >>/etc/sysconfig/proxy \
 && zypper ar -f -G -n packman http://ftp.gwdg.de/pub/linux/misc/packman/suse/openSUSE_Leap_15.5/ packman \
 && zypper -n refresh \
 && zypper -n update \
 && zypper -n install -l $(</packages)

RUN ln -sfv python3.6m /usr/include/python3.6 \
 && ln -sfv python3 /usr/bin/python

# 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

# Add YUM repository for locally built packages
RUN mkdir -p /home/trinity/rpmbuild/RPMS.tde-${TDE_VERSION}/${ARCH} \
 && sudo zypper ar -C -G /home/trinity/rpmbuild/RPMS.tde-${TDE_VERSION}/${ARCH} rpmbuild.${ARCH} \
 && mkdir -p /home/trinity/rpmbuild/RPMS.tde-${TDE_VERSION}/noarch \
 && sudo zypper ar -C -G /home/trinity/rpmbuild/RPMS.tde-${TDE_VERSION}/noarch rpmbuild.noarch

# Install heimdal development files
RUN rpm -Uvh https://ftp.lysator.liu.se/pub/opensuse/source/distribution/leap/15.5/repo/oss/src/libheimdal-7.8.0-bp155.2.7.src.rpm \
 && wget -nv -O "${HOME}/rpmbuild/SOURCES/heimdal-7.8.0.tar.gz" "https://github.com/heimdal/heimdal/releases/download/heimdal-7.8.0/heimdal-7.8.0.tar.gz" \
 && sed -i "${HOME}/rpmbuild/SPECS/libheimdal.spec" -e "/^Source0:/ s|.*|Source0: heimdal-7.8.0.tar.gz|" -e "/^Patch0/ s|^|#|" \
 && rpmbuild -bc ${HOME}/rpmbuild/SPECS/libheimdal.spec \
 && sudo make -C ${HOME}/rpmbuild/BUILD/heimdal-7.8.0/tools/ install