e4086446cc
This has become possible with OpenWrt 21.02 and while the Dockerfile already received that updated, we forgot to update the CI and the documentation.
9 lines
210 B
Bash
Executable File
9 lines
210 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
apt-get -y update
|
|
apt-get -y install git subversion build-essential python3 gawk unzip libncurses5-dev zlib1g-dev libssl-dev wget time qemu-utils
|
|
apt-get -y clean
|
|
rm -rf /var/lib/apt/lists/*
|