From 0d7d512bce38d29cd246396b754e1d0bba898c34 Mon Sep 17 00:00:00 2001 From: clyang82 Date: Wed, 11 Dec 2024 11:48:34 +0800 Subject: [PATCH] run go mod vendor Signed-off-by: clyang82 --- Containerfile.rhtap | 2 +- Makefile | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Containerfile.rhtap b/Containerfile.rhtap index 2652d142..8d4a14c4 100755 --- a/Containerfile.rhtap +++ b/Containerfile.rhtap @@ -1,4 +1,4 @@ -FROM brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_8_1.22 AS builder +FROM brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_1.22 AS builder ENV SOURCE_DIR=/maestro WORKDIR $SOURCE_DIR diff --git a/Makefile b/Makefile index 3375055f..90ad5c2e 100755 --- a/Makefile +++ b/Makefile @@ -178,6 +178,7 @@ lint: # Build binaries # NOTE it may be necessary to use CGO_ENABLED=0 for backwards compatibility with centos7 if not using centos7 binary: check-gopath + ${GO} mod vendor ${GO} build $(BUILD_OPTS) ./cmd/maestro .PHONY: binary