Skip to content

Commit 11980b4

Browse files
committed
.
1 parent 2d4dead commit 11980b4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/docker/ubuntu-22.04.Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ ARG BASE_DEPS="\
2727

2828
# UMF's dependencies
2929
ARG UMF_DEPS="\
30-
libhwloc-dev"
30+
libtool"
3131

3232
# Dependencies for tests (optional)
3333
ARG TEST_DEPS="\
@@ -44,12 +44,16 @@ ARG MISC_DEPS="\
4444
sudo \
4545
whois"
4646

47+
COPY .github/scripts/install_hwloc.sh /opt/umf/install_hwloc.sh
48+
4749
# Update and install required packages
4850
RUN apt-get update \
4951
&& apt-get install -y --no-install-recommends \
5052
${BASE_DEPS} \
5153
${TEST_DEPS} \
5254
${MISC_DEPS} \
55+
${UMF_DEPS} \
56+
&& /opt/umf/install_hwloc.sh \
5357
&& rm -rf /var/lib/apt/lists/* \
5458
&& apt-get clean all
5559

0 commit comments

Comments
 (0)