'How to install kerberos in oraclelinux 8 arm64v8 Docker image

So I have a docker image for "Oraclelinux-8 arm64v8", and I want to install "GSS-KRB for Kerberos" in the image. I searched a lot but I could not find much information for this.

So my question is :- How to install GSS-KRB for Kerberos in my image ? Any suggestions are highly appreciated.

Update:- Here is my entire Dockerfile

FROM arm64v8/oraclelinux:8

# Setup basic environment stuff
ENV container docker
ENV LANG en_US.UTF-8
ENV TZ EST
ENV DEBIAN_FRONTEND=noninteractive

# Base image stuff
#RUN yum install -y zlib-devel bzip2 bzip2-devel readline-devel sqlite sqlite-devel openssl-devel vim yum-utils sssd sssd-tools krb5-libs krb5-workstation.x86_64

# CCSMP dependent
RUN yum install -y glibc-devel
RUN yum install -y wget
RUN yum install -y make gcc java-1.8.0-openjdk-devel tar perl maven svn



# Minor changes to image to get ccsmp to build
RUN ln -s /usr/lib/jvm/java-1.8.0-openjdk /usr/lib/jvm/default-jvm
RUN cp /usr/include/linux/stddef.h /usr/include/stddef.h


RUN wget https://mirror.its.dal.ca/apache//ant/binaries/apache-ant-1.10.12-bin.zip
RUN unzip apache-ant-1.10.12-bin.zip && mv apache-ant-1.10.12/ /opt/ant

ENV JAVA_HOME /usr

ENV ANT_HOME="/usr/bin/ant"
ENV PATH="/usr/bin/ant:$PATH"




CMD /bin/bash


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source