blob: 7851f5dbd6ab7b1a15bb2d3cf132c506e8ea6e69 [file] [log] [blame]
#!/bin/bash
set -x -e
# Builds and uploads a container image for the ingestion server.
APPNAME="gold-ingestion"
# 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 ./dockerfiles/Dockerfile_ingestion ${ROOT}/Dockerfile
${INSTALL} --mode=755 -T ./build/gold_ingestion_k8s ${ROOT}/usr/local/bin/gold-ingestion
}
source ../bash/docker_build.sh