From 7ab25f625165bb7c485592142c21f6b2865be761 Mon Sep 17 00:00:00 2001 From: Samuel Aubertin Date: Sun, 11 Jan 2026 18:10:15 +0100 Subject: [PATCH] install docker ce cli only --- .forgejo/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/ci.yaml b/.forgejo/workflows/ci.yaml index 163f837..86cb4dc 100644 --- a/.forgejo/workflows/ci.yaml +++ b/.forgejo/workflows/ci.yaml @@ -34,8 +34,8 @@ jobs: - name: Install docker CLI run: | - apt-get update - apt-get install -y docker.io + wget -qO- https://download.docker.com/linux/debian/dists/bullseye/pool/stable/amd64/docker-ce-cli_29.1.4-1~debian.11~bullseye_amd64.deb | dpkg -i /dev/stdin + apt-get install -f - name: Build image run: |