feat: Add unzip (required for packer action)
Some checks failed
build-image / Semantic Release (Dry-run) (push) Successful in 16s
build-image / Container image (push) Failing after 4m46s
build-image / Semantic Release (push) Has been skipped

This commit is contained in:
Danny Bessems 2024-06-06 11:53:55 +10:00
parent e4749fd0c4
commit 31347764ae

View File

@ -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 && \