Files
image-builder_old/projects/widefrog/scripts/entrypoint.sh
2025-09-22 13:19:41 +02:00

20 lines
403 B
Bash
Executable File

#!/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 ""