blob: ff70581ba5088aa00d34e4faaa66baedcf8c61e7 [file] [log] [blame]
#!/bin/bash
APPNAME=datastore-backup-k
DESCRIPTION="Application to backup Cloud Datastore to Cloud Storage."
set -x -e
# Copy files into the right locations in ${ROOT}.
copy_release_files()
{
INSTALL="install -D --verbose"
${INSTALL} --mode=644 -T ${APPNAME}/Dockerfile ${ROOT}/Dockerfile
${INSTALL} --mode=755 -T ${GOPATH}/bin/${APPNAME} ${ROOT}/usr/local/bin/${APPNAME}
}
source ../bash/docker_build.sh