From ad3616edb093eae93cf74ae62e04d1545a1e1cb1 Mon Sep 17 00:00:00 2001 From: AKASHI Takahiro Date: Tue, 1 Feb 2022 10:32:36 +0900 Subject: Dockerfile: Add libgnutls package for building mkeficapsule command For adding signing feature for capsule authentication to the host tool, mkeficapsule, we will link gnutls library for crypto operation. Since we need this command to complete the capsule authentication test on sandbox in CI loop, necessary packages must be installed on the host. See my patch, "tools: mkeficapsule: add firmware image signing." Signed-off-by: AKASHI Takahiro --- tools/docker/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tools/docker/Dockerfile') diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile index f19e618ffba..141260cce13 100644 --- a/tools/docker/Dockerfile +++ b/tools/docker/Dockerfile @@ -67,6 +67,8 @@ RUN apt-get update && apt-get install -y \ libgit2-dev \ libjson-glib-dev \ libguestfs-tools \ + libgnutls28-dev \ + libgnutls30 \ liblz4-tool \ libpixman-1-dev \ libpython3-dev \ -- cgit v1.2.3 From cd59d44cfd5daebaab4b01a0a5f2931f9e4ed834 Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Thu, 3 Feb 2022 08:38:34 -0500 Subject: Dockfile, CI: Update to latest focal tag and build - Latest focal tag - Add libgnutls to image Signed-off-by: Tom Rini --- tools/docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/docker/Dockerfile') diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile index 141260cce13..7a3f5cbade4 100644 --- a/tools/docker/Dockerfile +++ b/tools/docker/Dockerfile @@ -2,7 +2,7 @@ # This Dockerfile is used to build an image containing basic stuff to be used # to build U-Boot and run our test suites. -FROM ubuntu:focal-20220105 +FROM ubuntu:focal-20220113 MAINTAINER Tom Rini LABEL Description=" This image is for building U-Boot inside a container" -- cgit v1.2.3