From ae36ce1facf430ad4d6c815501e69ad02b3fb5f5 Mon Sep 17 00:00:00 2001 From: Leonardo Fagundes Luz Serrano Date: Thu, 11 Apr 2024 22:30:00 -0300 Subject: [PATCH] Added isomd5sum pkg to LAT container This pkg adds just a few Kb to the image size and is required for the 'implantisomd5' command used by some scripts when producing the ISO. Test Plan: pending - Build container and check if cmd is available Story: 2011098 Task: 49861 Change-Id: Ic4344528f0f4e5d2dbb6c44c5252e819abbf4074 Signed-off-by: Leonardo Fagundes Luz Serrano --- stx/dockerfiles/stx-lat-tool.Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stx/dockerfiles/stx-lat-tool.Dockerfile b/stx/dockerfiles/stx-lat-tool.Dockerfile index a8523236..885de7b7 100644 --- a/stx/dockerfiles/stx-lat-tool.Dockerfile +++ b/stx/dockerfiles/stx-lat-tool.Dockerfile @@ -37,6 +37,8 @@ RUN apt-get -y update && apt-get --no-install-recommends -y install \ rsync \ cpio \ vim \ + libpopt0 \ + isomd5sum \ && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* && \