diff --git a/dist/predeploy-vanilla.sh b/dist/predeploy-vanilla.sh new file mode 100644 index 0000000..002abb6 --- /dev/null +++ b/dist/predeploy-vanilla.sh @@ -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