-
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
Lior Nabat
committed
Nov 12, 2021
1 parent
fb248c8
commit 4861e90
Showing
1 changed file
with
5 additions
and
5 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 |
---|---|---|
|
@@ -9,11 +9,11 @@ ADD . $GOPATH/github.com/kubemq-io/kubemq-bridges | |
WORKDIR $GOPATH/github.com/kubemq-io/kubemq-bridges | ||
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -tags container -a -mod=vendor -installsuffix cgo -ldflags="-w -s -X main.version=$VERSION" -o kubemq-bridges-run . | ||
FROM registry.access.redhat.com/ubi8/ubi-minimal | ||
RUN microdnf install yum \ | ||
&& yum -y update-minimal --security --sec-severity=Important --sec-severity=Critical \ | ||
&& yum clean all \ | ||
&& microdnf remove yum \ | ||
&& microdnf clean all | ||
#RUN microdnf install yum \ | ||
# && yum -y update-minimal --security --sec-severity=Important --sec-severity=Critical \ | ||
# && yum clean all \ | ||
# && microdnf remove yum \ | ||
# && microdnf clean all | ||
MAINTAINER KubeMQ [email protected] | ||
LABEL name="KubeMQ Bridges Connectors" \ | ||
maintainer="[email protected]" \ | ||
|