diff --git a/.forgejo/workflows/ansible.yml b/.forgejo/workflows/ansible.yml index 9dc3a84..e6c905e 100644 --- a/.forgejo/workflows/ansible.yml +++ b/.forgejo/workflows/ansible.yml @@ -17,14 +17,16 @@ jobs: arch: [ amd64, arm64 ] runs-on: ${{ matrix.arch }} container: - # Use a more suitable base image for package management and common tools. - # 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 + image: node:latest volumes: - /var/run/docker.sock:/var/run/docker.sock steps: + - name: Install Docker CLI + run: | + apt-get update + apt-get install -y docker.io + - name: Checkout repository uses: actions/checkout@v4