Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions kafka-rest/Dockerfile.ubi8
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
# limitations under the License.

ARG DOCKER_UPSTREAM_REGISTRY
ARG DOCKER_UPSTREAM_TAG=ubi8-latest
ARG DOCKER_UPSTREAM_TAG=ubi9-latest

FROM ${DOCKER_UPSTREAM_REGISTRY}confluentinc/cp-base-new:${DOCKER_UPSTREAM_TAG}
FROM ${DOCKER_UPSTREAM_REGISTRY}confluentinc/cp-base-java:${DOCKER_UPSTREAM_TAG}

ARG PROJECT_VERSION
ARG ARTIFACT_ID
Expand Down Expand Up @@ -57,7 +57,7 @@ baseurl=${CONFLUENT_PACKAGES_REPO}/ \n\
gpgcheck=1 \n\
gpgkey=${CONFLUENT_PACKAGES_REPO}/archive.key \n\
enabled=1 " > /etc/yum.repos.d/confluent.repo \
&& yum install -y \
&& microdnf install -y \
confluent-${COMPONENT}-${CONFLUENT_VERSION} \
confluent-control-center-${CONFLUENT_VERSION} \
# We are installing confluent-telemetry package explicitly because
Expand All @@ -66,7 +66,7 @@ enabled=1 " > /etc/yum.repos.d/confluent.repo \
confluent-telemetry-${CONFLUENT_VERSION} \
confluent-security-${CONFLUENT_VERSION} \
&& echo "===> clean up ..." \
&& yum clean all \
&& microdnf clean all \
&& rm -rf /tmp/* /etc/yum.repos.d/confluent.repo \
&& echo "===> Setting up ${COMPONENT} dirs" \
&& chown appuser:root -R /etc/${COMPONENT} \
Expand Down