github.com/sijibomii/docker@v0.0.0-20231230191044-5cf6ca554647/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 )