Files
bdcontract-bundle/docker/preparedockerdist.sh

10 lines
263 B
Bash
Raw Normal View History

#!/bin/bash
rm -rf build/dockerdist
mkdir build/dockerdist
cp docker/dockerdist/* build/dockerdist/
cp ./agent-backend/cmconfig.json.template build/dockerdist/cmconfig.json
cp -r ../cp-bundle/cp/build/output build/dockerdist/cp
if [ "$2" == "push" ]; then
done;