github.com/ojongerius/docker@v1.11.2/hack/make/dynbinary (about) 1 #!/bin/bash 2 set -e 3 4 ( 5 export IAMSTATIC="false" 6 export LDFLAGS_STATIC_DOCKER='' 7 export BUILDFLAGS=( "${BUILDFLAGS[@]/netgo /}" ) # disable netgo, since we don't need it for a dynamic binary 8 export BUILDFLAGS=( "${BUILDFLAGS[@]/static_build /}" ) # we're not building a "static" binary here 9 source "${MAKEDIR}/binary" 10 )