blob: 06fb3263a9c27a953f1c6f51a02251e6d04fd8f4 [file] [log] [blame]
#!/bin/bash
set -x -e
# Create and upload a container image for goldpushk crashing-server, a fake service for testing
# purposes only that crashes after a number of seconds specified via a command-line flag.
APPNAME=goldpushk-crashing-server
# Copy files into the right locations in ${ROOT}.
copy_release_files()
{
INSTALL="install -D --verbose --backup=none"
INSTALL_DIR="install -d --verbose --backup=none"
# Add the dockerfile and binary.
${INSTALL} --mode=644 -T ./dockerfiles/Dockerfile_goldpushk_crashing_server ${ROOT}/Dockerfile
${INSTALL} --mode=755 -T ./build/goldpushk_crashing_server_k8s ${ROOT}/usr/local/bin/${APPNAME}
}
source ../bash/docker_build.sh