ci: add custom runner images with Node.js pre-installed
Build Runner Images / Build and Push Runner Images (push) Failing after 58s
Build Runner Images / Build and Push Runner Images (push) Failing after 58s
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
FROM node:22-bookworm
|
||||
|
||||
# Node.js already installed, ensure npm is up to date
|
||||
RUN apt-get update && apt-get upgrade -y \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# Verify installations
|
||||
RUN node --version && npm --version
|
||||
|
||||
LABEL maintainer="homelab" \
|
||||
description="Node.js 22 with latest npm"
|
||||
Reference in New Issue
Block a user