From 4b272956ddef91d386ef659e70ab4f9db49020d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rouven=20We=C3=9Fling?= Date: Tue, 21 Jan 2025 18:17:39 +0100 Subject: [PATCH] Add git to almalinux container (#43) Category: addition --- almalinux-devtoolset11/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/almalinux-devtoolset11/Dockerfile b/almalinux-devtoolset11/Dockerfile index 0bf9ec5..24525fc 100644 --- a/almalinux-devtoolset11/Dockerfile +++ b/almalinux-devtoolset11/Dockerfile @@ -4,7 +4,7 @@ USER 0 # Need shadow-utils for groupadd and useradd RUN curl -fsSL https://rpm.nodesource.com/setup_18.x | bash - && \ - microdnf install -y shadow-utils make nodejs python3.11 gcc-toolset-11 && \ + microdnf install -y shadow-utils make nodejs python3.11 gcc-toolset-11 git && \ ln -s python3.11 /usr/bin/python && \ ln -sf python3.11 /usr/bin/python3 && \ microdnf clean all && \