blob: 695be4d4f5172c5bc74a512f21e79b10dbf77538 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!/usr/bin/env sh
# SPDX-License-Identifier: GPL-3.0-or-later
# this script should be running in alpine linux
# install the required packages
apk update
apk add --no-cache \
bash \
wget \
curl \
ncurses \
git \
netcat-openbsd \
alpine-sdk \
autoconf \
automake \
gcc \
make \
libtool \
pkgconfig \
util-linux-dev \
openssl-dev \
gnutls-dev \
zlib-dev \
libmnl-dev \
libnetfilter_acct-dev \
|| exit 1
|