mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2024-12-26 06:35:40 +03:00
16 lines
453 B
Bash
16 lines
453 B
Bash
|
export SCRIPTPATH="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
|
||
|
|
||
|
clear
|
||
|
|
||
|
echo "======================================="
|
||
|
echo "===== Building third-party images ====="
|
||
|
echo "======================================="
|
||
|
${SCRIPTPATH}/make-all-third-party.sh
|
||
|
|
||
|
echo "======================================="
|
||
|
echo "===== Building EpicMorg images ====="
|
||
|
echo "======================================="
|
||
|
${SCRIPTPATH}/.make-all-epicmorg-based.sh
|
||
|
|
||
|
exit 0
|