Skip to content

Commit 778d9fa

Browse files
authored
Fix UCX and HPX Builds (#52)
1 parent 2a1676e commit 778d9fa

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

hpx/Dockerfile

+6-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@ ARG BASE
33
FROM ${REPOSITORY}:${BASE}
44
LABEL maintainer="Felix Thaler <[email protected]>"
55

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
712

813
RUN cd /tmp && \
914
git clone --single-branch --branch ${HPX_TAG} --depth 1 https://github.com/STEllAR-GROUP/hpx.git && \

ucx/Dockerfile

+7
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@ ARG BASE
33
FROM ${REPOSITORY}:${BASE}
44
LABEL maintainer="Marco Bettiol <[email protected]>"
55

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+
613
ARG UCX_VERSION=1.10.1
714
RUN cd /tmp && \
815
git clone https://github.com/openucx/ucx.git && \

0 commit comments

Comments
 (0)