mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-06-18 14:23:07 -04:00
15 lines
369 B
Plaintext
15 lines
369 B
Plaintext
#!/usr/bin/with-contenv bash
|
|
|
|
ARCH=$(uname -m)
|
|
|
|
if [ ! -f "/flutter/bin/flutter" ]; then
|
|
echo "Installing Flutter"
|
|
apt-get update
|
|
apt-get install -y \
|
|
unzip
|
|
git clone https://github.com/flutter/flutter.git -b beta --depth 1 /flutter
|
|
ln -s /flutter/bin/flutter /usr/bin/flutter
|
|
flutter doctor
|
|
else
|
|
echo "PowerShell already installed, skipping"
|
|
fi |