blob: 05fb846e2f5a958505b3182b86c96924969070a0 [file] [log] [blame]
#!/bin/bash
# Build the cd image.
set -x -e
APPNAME=cd
# 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 Dockerfile ${ROOT}/Dockerfile
${INSTALL} --mode=644 -T ../infra/config/recipes.cfg ${ROOT}/recipes.cfg
}
source ../bash/docker_build.sh