Added vanilla predeploy script

This commit is contained in:
Dunemask 2021-08-23 20:36:51 -06:00
parent db6769f0e7
commit 7c5a6dd326

11
dist/predeploy-vanilla.sh vendored Normal file
View file

@ -0,0 +1,11 @@
#!/bin/bash
echo "Creating vanilla predeploy!"
# Set path correclty
if [[ $PWD == *"dist" ]];
then cd ..
fi
# Install node dependencies
echo "Installing node depencencies!"
npm i
echo "Building Docker Image!"
npm run build:all