-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed ReflectTypeFromJSONName function --------- Signed-off-by: David Wertenteil <[email protected]>
- Loading branch information
David Wertenteil
authored
Dec 24, 2023
1 parent
fdd0f3b
commit 4fedfe4
Showing
11 changed files
with
196 additions
and
397 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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
DOCKERFILE_PATH=./build/Dockerfile | ||
BINARY_NAME=storage-apiserver | ||
BINARY_NAME=storage | ||
|
||
IMAGE?=quay.io/kubescape/$(BINARY_NAME) | ||
|
||
|
||
binary: | ||
build: | ||
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o $(BINARY_NAME) | ||
|
||
docker-build: | ||
docker build -t $(IMAGE):$(TAG) -f $(DOCKERFILE_PATH) . | ||
docker buildx build --platform linux/amd64 -t $(IMAGE):$(TAG) -f $(DOCKERFILE_PATH) . | ||
docker-push: | ||
docker push $(IMAGE):$(TAG) |
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
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
Oops, something went wrong.