Skip to content

Commit f93db7b

Browse files
authored
Installing additional tools like conan and cmake
* used to build https://github.com/jonico/zenofgithub * see https://youtu.be/82AvbRtuOm8
1 parent dd28c27 commit f93db7b

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

runner/Dockerfile

+6-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,13 @@ RUN sudo apt update -y \
55
&& sudo apt install stress \
66
&& sudo apt install -y python3-pil \
77
&& sudo apt install -y python3-redis \
8-
&& sudo rm -rf /var/lib/apt/lists/* \
8+
&& sudo apt install -y python3-pip \
9+
&& sudo pip3 install conan \
10+
&& sudo apt-get install -y gcc-multilib \
911
&& curl -sLS https://dl.get-arkade.dev | sudo sh \
1012
&& arkade get kubectl \
1113
&& sudo mv /home/runner/.arkade/bin/kubectl /usr/local/bin/ \
1214
&& arkade get kustomize \
13-
&& sudo mv /home/runner/.arkade/bin/kustomize /usr/local/bin/
15+
&& sudo mv /home/runner/.arkade/bin/kustomize /usr/local/bin/ \
16+
&& sudo apt-get install -y cmake \
17+
&& sudo rm -rf /var/lib/apt/lists/*

0 commit comments

Comments
 (0)