Browse Source

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 <takahiro.akashi@linaro.org>
AKASHI Takahiro 2 years ago
parent
commit
ad3616edb0
1 changed files with 2 additions and 0 deletions
  1. 2 0
      tools/docker/Dockerfile

+ 2 - 0
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 \