File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -169,6 +169,26 @@ RUN curl -L -s -S \
169169 && shasum -a 512 /bin/hadolint | \
170170 awk '$1!="734e37c1f6619cbbd86b9b249e69c9af8ee1ea87a2b1ff71dccda412e9dac35e63425225a95d71572091a3f0a11e9a04c2fc25d9e91b840530c26af32b9891ca" {exit(1)}'
171171
172+ # #####
173+ # Intel ISA-L 2.29.0
174+ # #####
175+ # hadolint ignore=DL3003,DL3008
176+ RUN mkdir -p /opt/isa-l-src \
177+ && apt-get -q update \
178+ && apt-get install -y --no-install-recommends automake yasm \
179+ && apt-get clean \
180+ && curl -L -s -S \
181+ https://github.com/intel/isa-l/archive/v2.29.0.tar.gz \
182+ -o /opt/isa-l.tar.gz \
183+ && tar xzf /opt/isa-l.tar.gz --strip-components 1 -C /opt/isa-l-src \
184+ && cd /opt/isa-l-src \
185+ && ./autogen.sh \
186+ && ./configure \
187+ && make \
188+ && make install \
189+ && cd /root \
190+ && rm -rf /opt/isa-l-src
191+
172192# ##
173193# Avoid out of memory errors in builds
174194# ##
You can’t perform that action at this time.
0 commit comments