Warning, /jana2/containers/jana2_devenv_ubuntu.Containerfile is written in an unsupported language. File is not indexed.
0001
0002 FROM rootproject/root:latest
0003 # This is an Ubuntu >= 22.04
0004
0005 USER root
0006 RUN mkdir /app
0007 WORKDIR /app
0008
0009 RUN apt update -y \
0010 && apt install -y build-essential gdb valgrind cmake wget unzip vim libasan6 less exa bat git zlib1g-dev pip \
0011 python3-dev python3-zmq libczmq-dev libxerces-c-dev libx11-dev libxpm-dev libxft-dev libxext-dev \
0012 libyaml-dev python3-jinja2 python3-yaml libz3-dev
0013
0014
0015 RUN git clone -b v00-99 https://github.com/AIDASoft/podio /app/podio
0016
0017 RUN cd /app/podio \
0018 && mkdir build install \
0019 && cd build \
0020 && cmake -DCMAKE_INSTALL_PREFIX=../install -DUSE_EXTERNAL_CATCH2=OFF .. \
0021 && make -j4 install
0022
0023 CMD bash
0024