mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-06-27 02:32:06 -04:00
16 lines
425 B
Plaintext
16 lines
425 B
Plaintext
#!/usr/bin/with-contenv bash
|
|
|
|
ARCH=$(uname -m)
|
|
|
|
if [ ! -f "/flutter/bin/flutter" ]; then
|
|
echo "Installing Flutter"
|
|
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
|
|
flutter config --enable-web
|
|
flutter config --no-analytics
|
|
else
|
|
echo "Flutter already installed, skipping"
|
|
fi |