File tree 1 file changed +26
-24
lines changed
1 file changed +26
-24
lines changed Original file line number Diff line number Diff line change @@ -30,31 +30,33 @@ apt-get install -y --no-install-recommends \
30
30
apt-utils \
31
31
apt-transport-https \
32
32
ca-certificates
33
- # gnupg2: required for gnupg2 key retrieval
34
- # llvm: required for llvm-config
35
- apt-get install -qq \
36
- clang \
37
- cmake \
38
- curl \
39
- dirmngr \
40
- git \
41
- gnupg2 \
42
- gperf \
43
- htop \
44
- libclang-dev \
45
- libssl-dev \
46
- llvm \
47
- ninja-build \
48
- pkg-config \
49
- python-dev \
50
- python3-pip \
51
- python3-setuptools \
52
- software-properties-common \
53
- strace \
54
- unzip \
55
- libncurses5-dev \
56
- luarocks \
33
+
34
+ packages=(
35
+ clang
36
+ cmake
37
+ curl
38
+ dirmngr
39
+ git
40
+ gnupg2 # required for gnupg2 key retrieval
41
+ gperf
42
+ htop
43
+ libclang-dev
44
+ libssl-dev
45
+ llvm # required for llvm-config
46
+ ninja-build
47
+ pkg-config
48
+ python-dev
49
+ python3-pip
50
+ python3-setuptools
51
+ software-properties-common
52
+ strace
53
+ unzip
54
+ libncurses5-dev
55
+ luarocks
57
56
zlib1g-dev
57
+ )
58
+
59
+ apt-get install -qq " ${packages[@]} "
58
60
59
61
apt-get clean # clear apt-caches to reduce image size
60
62
You can’t perform that action at this time.
0 commit comments