admin-dashboard-web/build-docker.sh

9 lines
230 B
Bash
Executable File

# only allow to run this script as root
if [ "$EUID" -ne 0 ]
then echo "Please run as root"
exit
fi
echo "Starting static web build of admin-dashboard-web"
npm run build
echo "Finished static web build of admin-dashboard-web"