blob: 67bff210e0dfc2b229810886bde3ad247c34cdda [file] [log] [blame]
#!/bin/bash
# Build the cd image.
set -x -e
APPNAME=cd-base
# 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 ../DEPS ${ROOT}/DEPS
}
source ../bash/docker_build.sh