mobileinsight-apptainer/with-spark.def

17 lines
361 B
Modula-2
Raw Normal View History

Bootstrap: localimage
From: mobileinsight.sif
%post
# Update and install dependencies
export DEBIAN_FRONTEND=noninteractive
apt-get update
apt-get upgrade -y
apt-get install -y \
2024-05-18 05:27:52 +00:00
python3-pandas \
openjdk-8-jre-headless \
scala
2024-05-19 01:38:25 +00:00
pip3 install pyspark[sql]==3.5.1 dill==0.3.8
# Cleanup
apt-get autoclean -y