Install Docker CLI in build job
All checks were successful
🚀 Deploy / 🧪 Test (push) Successful in 1m33s
🚀 Deploy / ʦ TypeScript (push) Successful in 1m23s
🚀 Deploy / 🔍 Lint (push) Successful in 49s
🚀 Deploy / 🐳 Build (push) Successful in 15m5s
🚀 Deploy / 🚀 Deploy (push) Successful in 31s

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:
Chris Parsons 2026-05-21 20:05:34 -07:00
parent 85b3317f9a
commit 4f9f9b5c6f

View file

@ -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