From 30accc0e297349b0f923c6d120b5e4e8bb1e976a Mon Sep 17 00:00:00 2001 From: Martin Riedl Date: Sat, 29 Mar 2025 10:06:34 +0100 Subject: [PATCH] feat: add git in ubuntu image --- README.md | 1 + images/ubuntu/24.04/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index cb7bcbe..8b3ee89 100644 --- a/README.md +++ b/README.md @@ -10,4 +10,5 @@ https://git.martin-riedl.de/ci/-/packages/container/ubuntu/24.04 - curl - docker-ce-cli - docker-buildx-plugin +- git - nodejs 22 diff --git a/images/ubuntu/24.04/Dockerfile b/images/ubuntu/24.04/Dockerfile index 08eba0e..aacba04 100644 --- a/images/ubuntu/24.04/Dockerfile +++ b/images/ubuntu/24.04/Dockerfile @@ -4,7 +4,7 @@ RUN apt-get update && apt-get upgrade -y && rm -rf /var/lib/apt/lists/* # install basis tools RUN apt-get update && \ - apt-get install -y --no-install-recommends curl ca-certificates && \ + apt-get install -y --no-install-recommends curl ca-certificates git && \ rm -rf /var/lib/apt/lists/* # install nodejs