blob: fa5148e6d4ec82e1977c1bafea14844ea0d1f588 [file] [log] [blame]
#!/bin/bash
APPNAME=fuzzer-be
set -x -e
# Copy files into the right locations in ${ROOT}.
copy_release_files()
{
INSTALL="install -D --verbose --backup=none"
${INSTALL} --mode=644 -T ${APPNAME}/Dockerfile ${ROOT}/Dockerfile
${INSTALL} --mode=755 -T ${GOPATH}/bin/${APPNAME} ${ROOT}/${APPNAME}
}
source ../bash/docker_build.sh