Install docker ce cli only

This commit is contained in:
Samuel Aubertin
2026-01-11 18:13:02 +01:00
parent 7ab25f6251
commit 9fdd4faadb

View File

@@ -32,10 +32,28 @@ jobs:
env: env:
HELLO_SECRET: ${{ secrets.HELLO_SECRET }} HELLO_SECRET: ${{ secrets.HELLO_SECRET }}
- name: Install docker CLI - name: Install required dependencies
run: | run: |
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 sudo apt-get update
apt-get install -f sudo apt-get install -y \
apt-transport-https \
ca-certificates \
curl \
gnupg2 \
lsb-release \
software-properties-common
- name: Download Docker CLI .deb package
run: |
wget https://download.docker.com/linux/debian/dists/bullseye/pool/stable/amd64/docker-ce-cli_29.1.4-1~debian.11~bullseye_amd64.deb
- name: Install Docker CLI
run: |
sudo dpkg -i docker-ce-cli_29.1.4-1~debian.11~bullseye_amd64.deb
sudo apt-get install -f
- name: Verify Docker CLI version
run: docker --version
- name: Build image - name: Build image
run: | run: |