From e149d860d5348c8250d80dd205ad6a05555fea44 Mon Sep 17 00:00:00 2001 From: Bastian de Byl Date: Sat, 6 Jun 2026 11:46:23 -0400 Subject: [PATCH] gitea-ci: add zip to the CI image Lambda packaging steps in some workflows shell out to `zip`; the image only had `unzip`. Add `zip` alongside it. Co-Authored-By: Claude Opus 4.8 (1M context) --- ansible/roles/gitea-actions/templates/Containerfile.ci | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/roles/gitea-actions/templates/Containerfile.ci b/ansible/roles/gitea-actions/templates/Containerfile.ci index ef1352e..07d641a 100644 --- a/ansible/roles/gitea-actions/templates/Containerfile.ci +++ b/ansible/roles/gitea-actions/templates/Containerfile.ci @@ -7,7 +7,7 @@ ARG DOCKER_CLI_VERSION=27.3.1 RUN apt-get update && apt-get install -y --no-install-recommends \ ca-certificates curl git openssh-client make build-essential \ - python3 python3-pip jq unzip \ + python3 python3-pip jq zip unzip \ && rm -rf /var/lib/apt/lists/* # Static docker client (no daemon) for jobs that run `docker build` against the