From 31347764ae36478ddbb89735656cb044e6931276 Mon Sep 17 00:00:00 2001 From: djpbessems Date: Thu, 6 Jun 2024 11:53:55 +1000 Subject: [PATCH] feat: Add unzip (required for packer action) --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index c9686dd..94b1909 100644 --- a/Dockerfile +++ b/Dockerfile @@ -44,6 +44,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ locales \ make \ netcat-openbsd \ + # (npm) Dependency for Gitea Actions npm \ openssh-client \ powershell-lts \ @@ -55,6 +56,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ qemu-utils \ # (sshpass) Dependency for Packer (non-interactive password authentication) sshpass \ + # (unzip) Dependency for Gitea Actions + unzip \ # (xorriso) Dependency for Packer (generating isofs image) xorriso \ yamllint && \