8 lines
221 B
Makefile
8 lines
221 B
Makefile
build: main.go
|
|
CGO_ENABLED=0 go build -v -ldflags="-w -s"
|
|
|
|
clean:
|
|
rm -f cert-deets
|
|
|
|
dist: main.go
|
|
docker buildx build . -t git.wallace.sh/scott/cert-deets:latest --platform linux/arm64,linux/amd64,darwin/arm64 --push
|