-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDockerfile
More file actions
37 lines (32 loc) · 1004 Bytes
/
Dockerfile
File metadata and controls
37 lines (32 loc) · 1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
FROM ubuntu:22.04
RUN apt-get update && \
apt-get install -y \
ca-certificates \
lsb-release \
wget && \
wget https://apache.jfrog.io/artifactory/arrow/$(lsb_release --id --short | tr 'A-Z' 'a-z')/apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb && \
apt-get install -y ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb && \
apt-get update && \
apt-get install -y \
build-essential \
cmake \
git \
libarrow-dev \
libhdf5-dev \
libncurses-dev \
libopenmpi-dev \
libparquet-dev \
libreadline-dev \
ninja-build \
nlohmann-json3-dev \
openmpi-bin \
openmpi-common \
python3.10 \
python3-pip && \
rm -rf /var/lib/apt/lists/*
WORKDIR /dfanalyzer
COPY . .
RUN pip install --upgrade pip && \
pip install build "meson>=1.5.0,<1.10.0" meson-python setuptools streamlit wheel && \
pip install .[darshan] -Csetup-args="-Denable_tools=true"
ENTRYPOINT ["dfanalyzer"]