Files
traefik-whoami/Makefile
Fernandez Ludovic 3b2f295be2 chore: clean
2022-10-09 17:19:42 +02:00

18 lines
287 B
Makefile

.PHONY: default check test build image
IMAGE_NAME := traefik/whoami
default: check test build
build:
CGO_ENABLED=0 go build -a --trimpath --installsuffix cgo --ldflags="-s" -o whoami
test:
go test -v -cover ./...
check:
golangci-lint run
image:
docker build -t $(IMAGE_NAME) .