gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 17:29:31 26 4
gpt4 key购买 nike

我想把这个 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 分钟后超时。

有谁知道可能是什么问题?

最佳答案

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

关于rhel - Forgerock - Forgeops - util - 使用 RHEL 构建?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57119809/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com