Forgerock-Forgeops-util-使用RHEL构建吗?

时间:2019-07-19 21:33:52

标签: rhel alpine openam rhel7 forgerock

我正在尝试将此Dockerfile放在此处-https://github.com/ForgeRock/forgeops/blob/release/6.5.0/docker/util/Dockerfile

并更改旧版本Alpine linux(如下所示):

FROM alpine:3.7

...

RUN apk add --update ca-certificates \
 && apk add --update -t deps curl\
 && curl -L https://storage.googleapis.com/kubernetes-release/release/${KUBE_LATEST_VERSION}/bin/linux/amd64/kubectl -o /usr/local/bin/kubectl \
 && chmod +x /usr/local/bin/kubectl \
 && apk del --purge deps \
 && apk add --update jq su-exec unzip curl bash openldap-clients \
 && rm /var/cache/apk/* \
 && mkdir -p $FORGEROCK_HOME \
 && addgroup -g 11111 forgerock \
 && adduser -s /bin/bash -h "$FORGEROCK_HOME" -u 11111 -D -G forgerock forgerock

要将其更改为在RHEL 7上运行(我的更改如下)

FROM ubi7-stigd:7.6

...

# Install epel, so we can install jq later
RUN rpm --import http://download.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-7 \
&& yum install -y --disableplugin=subscription-manager https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm 

# Install other stuff
RUN yum -y --disableplugin=subscription-manager update \
 && yum install -y --disableplugin=subscription-manager jq su-exec unzip curl bash openldap-clients ca-certificates deps \
 && curl -L https://storage.googleapis.com/kubernetes-release/release/${KUBE_LATEST_VERSION}/bin/linux/amd64/kubectl -o /usr/local/bin/kubectl \
 && chmod +x /usr/local/bin/kubectl \
 && mkdir -p $FORGEROCK_HOME \
 && groupadd -g 11111 forgerock \
 && useradd -m -s /bin/bash -d "$FORGEROCK_HOME" -u 11111 -g forgerock -G root forgerock

容器的构建就很好(尽管它抱怨无法找到“ su-exec”和“ deps”)。但是,当我将此图像上传到OpenShift并通过OpenAM pod运行时,容器无法启动,在10分钟后超时。这些事件表明容器已启动,并且日志仅显示2行,并表示该容器在10分钟后超时。

有人知道这个问题可能是什么吗?

1 个答案:

答案 0 :(得分:0)

我需要安装“ nc”软件包,因为.sh文件之一使用nc。