FROM centos:8

# Install generic dependencies to build jss
RUN true \
        && dnf update -y --refresh \
        && dnf install -y dnf-plugins-core gcc make rpm-build \
        && dnf config-manager --enable PowerTools \
        && dnf module enable -y pki-deps maven javapackages-tools \
        && dnf build-dep -y jss \
        && mkdir -p /home/sandbox \
        && dnf clean -y all \
        && rm -rf /usr/share/doc /usr/share/doc-base \
                  /usr/share/man /usr/share/locale /usr/share/zoneinfo \
        && true

# Link in the current version of jss from the git repository
WORKDIR /home/sandbox
COPY . /home/sandbox/jss

# Install dependencies from the spec file in case they've changed
# since the last release on this platform.
RUN true \
        && dnf build-dep -y --spec /home/sandbox/jss/jss.spec \
        && true

# Perform the actual build from source, not from RPM
WORKDIR /home/sandbox/jss
CMD true \
        && rm -rf build \
        && mkdir build \
        && cd build \
        && cmake .. \
        && make all \
        && ctest --output-on-failure \
        && true
