File tree 2 files changed +13
-1
lines changed
2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,12 @@ ARG BASE
3
3
FROM ${REPOSITORY}:${BASE}
4
4
LABEL maintainer=
"Felix Thaler <[email protected] >"
5
5
6
- ARG HPX_TAG=master
6
+ RUN apt-get update -qq && \
7
+ DEBIAN_FRONTEND=noninteractive apt-get install -qq -y \
8
+ libhwloc-dev && \
9
+ rm -rf /var/lib/apt/lists/*
10
+
11
+ ARG HPX_TAG=1.7.1
7
12
8
13
RUN cd /tmp && \
9
14
git clone --single-branch --branch ${HPX_TAG} --depth 1 https://github.com/STEllAR-GROUP/hpx.git && \
Original file line number Diff line number Diff line change @@ -3,6 +3,13 @@ ARG BASE
3
3
FROM ${REPOSITORY}:${BASE}
4
4
LABEL maintainer=
"Marco Bettiol <[email protected] >"
5
5
6
+ RUN apt-get update -qq && \
7
+ DEBIAN_FRONTEND=noninteractive apt-get install -qq -y \
8
+ autoconf \
9
+ libtool \
10
+ libnuma-dev && \
11
+ rm -rf /var/lib/apt/lists/*
12
+
6
13
ARG UCX_VERSION=1.10.1
7
14
RUN cd /tmp && \
8
15
git clone https://github.com/openucx/ucx.git && \
You can’t perform that action at this time.
0 commit comments