File tree Expand file tree Collapse file tree 3 files changed +14
-2
lines changed
Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 1616 dnsPolicy: ClusterFirstWithHostNet
1717 containers:
1818 - name: cluster-tools
19- image: conformance/cluster-tools:v1.0.4
19+ image: conformance/cluster-tools:v1.0.5
2020 imagePullPolicy: Always
2121 command: ["/bin/sh"]
2222 args: ["-c", "sleep infinity"]
Original file line number Diff line number Diff line change 1515 dnsPolicy: ClusterFirstWithHostNet
1616 containers:
1717 - name: cluster-tools
18- image: conformance/cluster-tools:v1.0.4
18+ image: conformance/cluster-tools:v1.0.5
1919 imagePullPolicy: Always
2020 command: ["/bin/sh"]
2121 args: ["-c", "sleep infinity"]
Original file line number Diff line number Diff line change @@ -14,6 +14,18 @@ ENV IMAGE_SERVICE_ENDPOINT=unix:///run/containerd/containerd.sock
1414COPY ./sleep /sleep
1515COPY ./zombie /zombie
1616
17+ # INSTALL Wireshark
18+ RUN apt update && apt-get install -y build-essential git cmake bison flex libgtk-3-dev libpcap-dev libssl-dev libncurses5-dev qtbase5-dev qttools5-dev-tools qttools5-dev libqt5svg5-dev libtool libgcrypt20-dev libc-ares-dev
19+
20+ RUN git clone https://github.com/wireshark/wireshark.git /wireshark
21+ RUN cd /wireshark && \
22+ git checkout tags/wireshark-4.0.8 && \
23+ mkdir build && \
24+ cd build && \
25+ cmake ../ && \
26+ make -j`nproc` && \
27+ make install
28+
1729COPY --from=validator /validator/bin/openmetricsvalidator /usr/local/bin/
1830RUN echo "deb http://deb.debian.org/debian buster-backports main" >> /etc/apt/sources.list
1931RUN apt update && apt install -y curl sysbench skopeo net-tools strace
You can’t perform that action at this time.
0 commit comments