blob: 1b2723da10e87a65ea21d0b281e00a9d4d6aba1f [file] [log] [blame]
#!/bin/bash
APPNAME=autoroll-be
set -x -e
# Copy files into the right locations in ${ROOT}.
copy_release_files()
{
INSTALL="install -D --verbose --backup=none"
INSTALL_DIR="install -d --verbose --backup=none"
${INSTALL} --mode=644 -T ./go/autoroll-be/Dockerfile ${ROOT}/Dockerfile
${INSTALL} --mode=755 -T ${GOPATH}/bin/${APPNAME} ${ROOT}/usr/local/bin/${APPNAME}
${INSTALL} --mode=644 -T ../infra/config/recipes.cfg ${ROOT}/usr/local/share/autoroll/recipes.cfg
}
source ../bash/docker_build.sh