blob: ac0fb106958a15a1961868434fbb0e3f54164bf5 [file] [log] [blame]
#!/bin/bash
# Builds and uploads a dockerfile for backup_to_gcs.
APPNAME=backup-to-gcs
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}/usr/local/bin/${APPNAME}
}
source ../bash/docker_build.sh