blob: 236df183324e48381f2c33b0be60c8616599a30f [file] [log] [blame]
#!/bin/bash
set -x -e
APPNAME=rpi-swarming-client
IMAGE=$(dirname "$0")
# Copy files into the right locations in ${ROOT}.
copy_release_files()
{
INSTALL="install -D --verbose --backup=none"
# Add the dockerfile and binary.
${INSTALL} --mode=644 -T ${IMAGE}/Dockerfile ${ROOT}/Dockerfile
${INSTALL} --mode=644 -T ${IMAGE}/oauth2_access_token_config.json ${ROOT}/etc/swarming_config/oauth2_access_token_config.json
${INSTALL} --mode=755 -T ./out/bot_config ${ROOT}/usr/bin/bot_config
${INSTALL} --mode=755 -T ${IMAGE}/sudo ${ROOT}/usr/bin/sudo
${INSTALL} --mode=755 -T /usr/bin/qemu-arm-static ${ROOT}/usr/bin/qemu-arm-static
${INSTALL_DIR} --mode=755 ${ROOT}/usr/local/share/${APPNAME}/
${INSTALL} --mode=644 ../machine/configs/* ${ROOT}/usr/local/share/${APPNAME}/
}
source ../bash/docker_build.sh