node:latest
Some checks failed
/ build-and-push (amd64) (push) Failing after 17s
/ build-and-push (arm64) (push) Failing after 14s
/ manifest (push) Has been skipped

This commit is contained in:
Xaver Russ 2025-07-14 00:49:28 +02:00
parent bf6fee36c0
commit 2321c5e53a

View file

@ -20,15 +20,10 @@ jobs:
# Use a more suitable base image for package management and common tools.
# Debian is often a good balance between size and available packages.
# You're using `apk` (Alpine Linux package manager) in an Ubuntu container, which will fail.
image: debian:stable-slim # or debian:bookworm-slim, or even a specific Node.js image if you mainly need Node.js
image: node:latest # or debian:bookworm-slim, or even a specific Node.js image if you mainly need Node.js
volumes:
- /var/run/docker.sock:/var/run/docker.sock
steps:
- name: Install build dependencies (apt)
run: |
# Use apt for Debian/Ubuntu based images
apt-get update
apt-get install -y nodejs npm git bash ca-certificates curl
- name: Checkout repository
uses: actions/checkout@v4