container build needs to be fully static

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2018-06-06 13:04:40 -04:00
parent f1862472c7
commit ae652ba149
Signed by: vbatts
GPG Key ID: 10937E57733F1362
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ container: fuzz-walker build.sh
plugins: $(PLUGINS)
fuzz-walker: $(wildcard *.go)
$(GO) build -o $@ .
$(GO) build --ldflags '-extldflags "-static"' -o $@ .
plugin-%.so:
$(GO) build -o $@ -buildmode=plugin ./walker/walkers/$*/