Install Docker CLI in build job
node:20-bookworm doesn't include the Docker CLI; install docker.io via apt before the buildx and registry steps. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
85b3317f9a
commit
4f9f9b5c6f
1 changed files with 3 additions and 0 deletions
|
|
@ -82,6 +82,9 @@ jobs:
|
|||
- name: ⬇️ Checkout repo
|
||||
uses: https://github.com/actions/checkout@v4
|
||||
|
||||
- name: 🐳 Install Docker CLI
|
||||
run: apt-get update -qq && apt-get install -y -qq docker.io
|
||||
|
||||
- name: 🐳 Set up Docker Buildx
|
||||
uses: https://github.com/docker/setup-buildx-action@v3
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue