Skip to content

Commit

Permalink
Move main.go to gatekeeper-keycloak
Browse files Browse the repository at this point in the history
  • Loading branch information
p53 committed Aug 4, 2023
1 parent 616e886 commit dda1be7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ golang:
build: golang
@echo "--> Compiling the project"
@mkdir -p bin
go build -ldflags "${LFLAGS}" -o bin/${NAME}
go build -ldflags "${LFLAGS}" -o bin/${NAME} cmd/gatekeeper-keycloak.go

static: golang
@echo "--> Compiling the project statically"
@mkdir -p bin
CGO_ENABLED=0 GOOS=linux go build -a -tags netgo -ldflags "-s -w ${LFLAGS}" -o bin/${NAME}
CGO_ENABLED=0 GOOS=linux go build -a -tags netgo -ldflags "-s -w ${LFLAGS}" -o bin/${NAME} cmd/gatekeeper-keycloak.go

.PHONY: container-build docker-build
container-build: docker-build
Expand Down
File renamed without changes.

0 comments on commit dda1be7

Please sign in to comment.