blob: b0c888231bdf4d471723f5ccfaf242c704760369 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
#
echo '============== CALLING SCRIPT TO BUILD DOCKER IMAGES ================='
CURRENTDIR="$(pwd)"
echo $CURRENTDIR
echo 'Building AAF/sshsm containers'
cd bin
chmod 755 build_images.sh
./build_images.sh
|