From acad7b18383106b16f67b5a271ea0c21d68017a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Canouil?= <8896044+mcanouil@users.noreply.github.com> Date: Thu, 30 Apr 2026 10:05:39 +0200 Subject: [PATCH] fix: add unzip installation to Dockerfile Set DEBIAN_FRONTEND to noninteractive to streamline the build process and install unzip for handling dependencies. --- .github/actions/docker/action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/actions/docker/action.yml b/.github/actions/docker/action.yml index 74daef58944..206a2753efa 100644 --- a/.github/actions/docker/action.yml +++ b/.github/actions/docker/action.yml @@ -49,6 +49,10 @@ runs: run: | cat << 'EOF' >> Dockerfile FROM ubuntu:22.04 + ENV DEBIAN_FRONTEND=noninteractive + RUN apt-get update \ + && apt-get install -y --no-install-recommends unzip \ + && rm -rf /var/lib/apt/lists/* COPY ["${{ inputs.source }}", "quarto-linux-amd64.deb"] RUN dpkg -i quarto-linux-amd64.deb && rm quarto-linux-amd64.deb EOF