From 285e642b2042f45c904763233ce4c9f1c0d2e033 Mon Sep 17 00:00:00 2001 From: ver4a Date: Thu, 2 Apr 2026 00:11:48 +0200 Subject: [PATCH] Stop manually linking node --- oci-builder/Containerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/oci-builder/Containerfile b/oci-builder/Containerfile index 4797ded..09b6db5 100644 --- a/oci-builder/Containerfile +++ b/oci-builder/Containerfile @@ -6,8 +6,6 @@ ENV REGISTRY_AUTH_FILE=/builder/.config/containers/auth.json RUN dnf5 -y --setopt install_weak_deps=false install podman buildah skopeo setpriv git-core nodejs24 diffutils gawk -RUN ln -s /usr/bin/node-24 /usr/bin/node - RUN echo "nobody:65536:65536" > /etc/subuid && echo "nobody:65536:65536" > /etc/subgid # This is a workaround for https://github.com/containers/podman/issues/23818, apart from that it serves absolutely no purpose. I also don't know why it looks there, given HOME is elsewhere, but it doesn't seem to cause any issues.