-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
22 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,19 +10,19 @@ WORKDIR $GOPATH/github.com/kubemq-hub/kubemq-bridges | |
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -mod=vendor -installsuffix cgo -ldflags="-w -s -X main.version=$VERSION" -o kubemq-bridges-run . | ||
FROM registry.access.redhat.com/ubi8/ubi-minimal | ||
MAINTAINER KubeMQ [email protected] | ||
LABEL name="KubeMQ Target Connectors" \ | ||
LABEL name="KubeMQ Bridges Connectors" \ | ||
maintainer="[email protected]" \ | ||
vendor="" \ | ||
vendor="kubemq.io" \ | ||
version="" \ | ||
release="" \ | ||
summary="" \ | ||
summary="KubeMQ Bridges bridge, replicate, aggregate, and transform messages between KubeMQ clusters no matter where they are, allowing to build a true cloud-native messaging single network running globally." \ | ||
description="" | ||
COPY licenses /licenses | ||
ENV GOPATH=/go | ||
ENV PATH=$GOPATH/bin:$PATH | ||
RUN mkdir /kubemq-bridges | ||
COPY --from=builder $GOPATH/github.com/kubemq-hub/kubemq-bridges/kubemq-bridges-run ./kubemq-bridges | ||
RUN chown -R 1001:root /kubemq-bridges && chmod g+rwX /kubemq-bridges | ||
WORKDIR kubemq-bridges | ||
RUN mkdir /kubemq-connector | ||
COPY --from=builder $GOPATH/github.com/kubemq-hub/kubemq-bridges/kubemq-bridges-run ./kubemq-connector | ||
RUN chown -R 1001:root /kubemq-connector && chmod g+rwX /kubemq-connector | ||
WORKDIR kubemq-connector | ||
USER 1001 | ||
CMD ["./kubemq-bridges-run"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ version: '2' | |
|
||
vars: | ||
BINARY_NAME: kubemq-bridges | ||
VERSION: v0.1.0 | ||
VERSION: v0.1.1 | ||
|
||
tasks: | ||
check_update: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters