Dockerfile: build and install WolfSSL

Signed-off-by: Michał Żygowski <michal.zygowski@3mdeb.com>
This commit is contained in:
Michał Żygowski
2024-04-17 17:41:13 +02:00
committed by Maciej Pijanowski
parent 61163027a9
commit caeb724831
+8
View File
@@ -46,6 +46,14 @@ RUN git clone https://github.com/coreboot/coreboot.git && \
unset USE_FLASHROM && \
rm -rf tests build
RUN git clone https://github.com/wolfSSL/wolfssl.git -b v5.7.0-stable --depth=1 && \
cd wolfssl && \
./autogen.sh && \
./configure --libdir /lib/x86_64-linux-gnu/ && \
make && \
make install
# Needed for vboot futility to sign images with VBOOT_CBFS_INTEGRATION
ENV CBFSTOOL=/usr/local/bin/cbfstool