Fix dependencies for installer

The installer is failing due to the kali-rolling docker images missing the correct libicu version. This change pulls the missing libicu and install it, before trying to install dotnet-sdk-2.2
This commit is contained in:
nfalkp 2021-06-13 16:31:08 -04:00 committed by GitHub
parent bfc3437205
commit aab9a04e2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
install.sh vendored
View File

@ -8,5 +8,7 @@ python3 -m pip install -r /root/shad0w/requirements.txt
# install dotnet
wget https://packages.microsoft.com/config/ubuntu/16.04/packages-microsoft-prod.deb -O /tmp/packages-microsoft-prod.deb
dpkg -i /tmp/packages-microsoft-prod.deb
wget http://ftp.us.debian.org/debian/pool/main/i/icu/libicu57_57.1-6+deb9u4_amd64.deb -O /tmp/libicu57_57.1-6+deb9u4_amd64.deb
dpkg -i /tmp/libicu57_57.1-6+deb9u4_amd64.deb
apt update -y
apt install dotnet-sdk-2.2 -y