We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d4dead commit 11980b4Copy full SHA for 11980b4
.github/docker/ubuntu-22.04.Dockerfile
@@ -27,7 +27,7 @@ ARG BASE_DEPS="\
27
28
# UMF's dependencies
29
ARG UMF_DEPS="\
30
- libhwloc-dev"
+ libtool"
31
32
# Dependencies for tests (optional)
33
ARG TEST_DEPS="\
@@ -44,12 +44,16 @@ ARG MISC_DEPS="\
44
sudo \
45
whois"
46
47
+COPY .github/scripts/install_hwloc.sh /opt/umf/install_hwloc.sh
48
+
49
# Update and install required packages
50
RUN apt-get update \
51
&& apt-get install -y --no-install-recommends \
52
${BASE_DEPS} \
53
${TEST_DEPS} \
54
${MISC_DEPS} \
55
+ ${UMF_DEPS} \
56
+ && /opt/umf/install_hwloc.sh \
57
&& rm -rf /var/lib/apt/lists/* \
58
&& apt-get clean all
59
0 commit comments