fix: install Docker in workflow job container
Some checks failed
Build and Deploy / build-and-push (push) Failing after 39s
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:
parent
659d1de643
commit
284376fc6d
1 changed files with 4 additions and 0 deletions
|
|
@ -16,6 +16,10 @@ jobs:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Install Docker
|
||||||
|
run: |
|
||||||
|
apt-get update && apt-get install -y docker.io
|
||||||
|
|
||||||
- name: Set up Docker image tags
|
- name: Set up Docker image tags
|
||||||
id: meta
|
id: meta
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue