Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion docker/images/centos-8streams.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,14 @@ vim \
gdb \
clang \
python36 \
glibc-devel.i686
glibc-devel.i686 \
xmlto \
uuid \
libuuid-devel \
json-c-devel

COPY ./install-cachelib-deps.sh ./install-cachelib-deps.sh
RUN ./install-cachelib-deps.sh

COPY ./install-dsa-deps.sh ./install-dsa-deps.sh
RUN ./install-dsa-deps.sh
23 changes: 23 additions & 0 deletions docker/images/install-dsa-deps.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!/usr/bin/env bash
# Copyright 2023, Intel Corporation

# Install idxd-config
git clone https://github.com/intel/idxd-config.git
cd idxd-config
./autogen.sh
./configure CFLAGS='-g -O2' --prefix=/usr --sysconfdir=/etc --libdir=/usr/lib64
make
make check
sudo make install
cd ../
rm -rf idxd-config

# Install DML Library
git clone --recursive https://github.com/intel/DML.git
cd DML
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
cmake --build . --target install
cd ../../
rm -rf DML