From 2321c5e53a01da1afcda2d34699d832348017937 Mon Sep 17 00:00:00 2001 From: Xaver Russ Date: Mon, 14 Jul 2025 00:49:28 +0200 Subject: [PATCH] node:latest --- .forgejo/workflows/ansible.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.forgejo/workflows/ansible.yml b/.forgejo/workflows/ansible.yml index 3ede529..9dc3a84 100644 --- a/.forgejo/workflows/ansible.yml +++ b/.forgejo/workflows/ansible.yml @@ -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