From 6272e2fc9ccc63bfbd62a83bb705cb25da0ce227 Mon Sep 17 00:00:00 2001 From: Kevin Dorner Date: Fri, 26 Aug 2022 04:46:43 +0200 Subject: [PATCH] Add git, curl and debhelper to container --- Containerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 6bbcd78..78d6b47 100644 --- a/Containerfile +++ b/Containerfile @@ -4,8 +4,11 @@ RUN apt update \ && apt install -y \ --no-install-recommends \ dpkg-dev \ - make \ devscripts \ + debhelper \ + make \ + git \ + curl \ && apt clean \ && rm -rf /var/lib/apt/lists/*