mirror of
https://github.com/TrezOne/docker-mods-uptime-kuma-timeout-fix.git
synced 2026-06-17 13:52:56 -04:00
20 lines
503 B
Plaintext
20 lines
503 B
Plaintext
#!/usr/bin/with-contenv bash
|
|
|
|
ARCH=$(uname -m)
|
|
|
|
if [ -f "/powershell/powershell_${ARCH}.tar.gz" ]; then
|
|
echo "Installing PowerShell"
|
|
apt-get update
|
|
apt-get install -y \
|
|
libicu60 \
|
|
libunwind8
|
|
tar xf "/powershell/powershell_${ARCH}.tar.gz" -C /powershell
|
|
rm -rf \
|
|
/powershell/powershell_x86_64.tar.gz \
|
|
/powershell/powershell_armv7l.tar.gz \
|
|
/powershell/powershell_aarch64.tar.gz
|
|
ln -s /powershell/pwsh /usr/bin/pwsh
|
|
else
|
|
echo "PowerShell already installed, skipping"
|
|
fi
|