Skip to content
Open
Changes from all commits
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
5 changes: 5 additions & 0 deletions kafka-rest/Dockerfile.ubi9
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ RUN cd /usr/share/java \

FROM registry.access.redhat.com/ubi9-minimal:${UBI_MINIMAL_VERSION}

ARG PROJECT_VERSION
ARG ARTIFACT_ID
ARG GIT_COMMIT

# default listener
EXPOSE 8082

Expand All @@ -72,6 +76,7 @@ LABEL version=$GIT_COMMIT
LABEL release=$PROJECT_VERSION
LABEL name=$ARTIFACT_ID
LABEL summary="The Confluent REST Proxy provides a RESTful interface to a Kafka cluster, making it easy to produce and consume messages, view the state of the cluster, and perform administrative actions without using the native Kafka protocol or clients."
LABEL description="The Confluent REST Proxy provides a RESTful interface to a Kafka cluster, making it easy to produce and consume messages, view the state of the cluster, and perform administrative actions without using the native Kafka protocol or clients."
LABEL io.confluent.docker.git.repo="confluentinc/kafka-rest-images"

COPY --from=intermediate / /
Expand Down