From c1b65d744e339f74566f6d8b882cf43db87ca9b1 Mon Sep 17 00:00:00 2001 From: Yiyao Yu Date: Fri, 17 May 2024 22:27:18 -0700 Subject: [PATCH 1/2] Use upstream wireshark to overcome MobileInsight website availability --- mobileinsight.def | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mobileinsight.def b/mobileinsight.def index 84b3263..a1eaa28 100644 --- a/mobileinsight.def +++ b/mobileinsight.def @@ -45,8 +45,8 @@ From: ubuntu:22.04 # Download resources cd /build - wget "http://www.mobileinsight.net/wireshark-{{ WS_VER }}-rbc-dissector.tar.xz" -nv \ - -O "wireshark-{{ WS_VER }}.tar.xz" + wget "https://github.com/wireshark/wireshark/archive/refs/tags/v{{ WS_VER }}.tar.gz" \ + -nv -O "wireshark-{{ WS_VER }}.tar.xz" tar -xf "wireshark-{{ WS_VER }}.tar.xz" git clone "https://github.com/mobile-insight/mobileinsight-core.git" git -C mobileinsight-core checkout "{{ MI_COMMIT }}" From 86a52a6f52a198285a28b33925ae75caf1abaa14 Mon Sep 17 00:00:00 2001 From: Yiyao Yu Date: Fri, 17 May 2024 22:27:52 -0700 Subject: [PATCH 2/2] Add pandas to Spark dependency --- with-spark.def | 1 + 1 file changed, 1 insertion(+) diff --git a/with-spark.def b/with-spark.def index 69f0afc..512fbcd 100644 --- a/with-spark.def +++ b/with-spark.def @@ -7,6 +7,7 @@ From: mobileinsight.sif apt-get update apt-get upgrade -y apt-get install -y \ + python3-pandas \ openjdk-8-jre-headless \ scala pip3 install pyspark==3.5.1