blob: 4d9ec3e560626a0f2763de2544dadc02e70d0d2e [file] [log] [blame]
#!/bin/bash
APPNAME=task-scheduler-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/task-scheduler-be/Dockerfile ${ROOT}/Dockerfile
${INSTALL} --mode=755 -T ${GOPATH}/bin/${APPNAME} ${ROOT}/usr/local/bin/${APPNAME}
}
source ../bash/docker_build.sh