fix: install Docker in workflow job container
Some checks failed
Build and Deploy / build-and-push (push) Failing after 39s

The node:24-bookworm base image doesn't include Docker. Install docker.io
package before building the image.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
CTO Agent 2026-07-18 16:51:08 +00:00
parent 659d1de643
commit 284376fc6d

View file

@ -16,6 +16,10 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Docker
run: |
apt-get update && apt-get install -y docker.io
- name: Set up Docker image tags
id: meta
run: |