add docker cli
Some checks failed
/ build-and-push (amd64) (push) Failing after 48s
/ build-and-push (arm64) (push) Failing after 43s
/ manifest (push) Has been skipped

This commit is contained in:
Xaver Russ 2025-07-14 00:50:47 +02:00
parent 2321c5e53a
commit 997f99e7ec

View file

@ -17,14 +17,16 @@ jobs:
arch: [ amd64, arm64 ] arch: [ amd64, arm64 ]
runs-on: ${{ matrix.arch }} runs-on: ${{ matrix.arch }}
container: container:
# Use a more suitable base image for package management and common tools. image: node:latest
# Debian is often a good balance between size and available packages.
# You're using `apk` (Alpine Linux package manager) in an Ubuntu container, which will fail.
image: node:latest # or debian:bookworm-slim, or even a specific Node.js image if you mainly need Node.js
volumes: volumes:
- /var/run/docker.sock:/var/run/docker.sock - /var/run/docker.sock:/var/run/docker.sock
steps: steps:
- name: Install Docker CLI
run: |
apt-get update
apt-get install -y docker.io
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v4