Install latest Docker CLI from official static binary
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 2s

This commit is contained in:
Adrian Miesikowski 2026-02-10 14:07:15 +01:00
parent 13c7f31fb9
commit ab007ac8e6

View File

@ -17,7 +17,9 @@ jobs:
steps: steps:
- name: Install Docker CLI - name: Install Docker CLI
run: | run: |
apk add --no-cache docker-cli || apt-get update && apt-get install -y docker.io || true wget -q https://download.docker.com/linux/static/stable/x86_64/docker-25.0.3.tgz
tar xzf docker-25.0.3.tgz --strip-components=1 -C /usr/local/bin docker/docker
rm docker-25.0.3.tgz
docker --version docker --version
- name: Build Docker image - name: Build Docker image