This commit is contained in:
2025-09-22 13:19:41 +02:00
parent 53668e986b
commit a5607c450b
16 changed files with 245 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
#!/bin/bash
folder="/app"
echo "---------------------------------------"
echo "Checking WideFrog installation..."
echo ""
if [ -z "$(ls -A "$folder")" ]; then
echo "Installing WideFrog..."
echo ""
cp -r /build/* /app/
else
echo "WideFrog already installed..."
fi
echo ""
echo "WideFrog-container start complete..."
echo ""
echo "---------------------------------------"
echo ""
echo ""