update Docker container image to use node:20-alpine and install Docker CLI
Build / build (push) Successful in 20s
Publish Docker Image / docker (push) Failing after 4s

This commit is contained in:
Lukas Höppner
2026-05-19 17:36:00 +02:00
parent c2ffd25130
commit 0899cc6741
+6 -1
View File
@@ -12,11 +12,16 @@ jobs:
docker:
runs-on: docker
container:
image: docker:cli
image: node:20-alpine
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Docker CLI
shell: sh
run: |
apk add --no-cache docker-cli
- name: Build image metadata
id: meta
shell: sh