]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
Adding git in container package dependencies (#1621)
authorJiří Podivín <redacted>
Mon, 29 May 2023 04:45:50 +0000 (06:45 +0200)
committerGitHub <redacted>
Mon, 29 May 2023 04:45:50 +0000 (21:45 -0700)
Git added to build packages for version information in docker image

Signed-off-by: Jiri Podivin <redacted>
.devops/full.Dockerfile
.devops/main.Dockerfile

index 491d67676f0cd81f2cf985b28ab838cb3569a4e7..01b3111d986c1cf1486988ec3c8f5bd2c11deb46 100644 (file)
@@ -3,7 +3,7 @@ ARG UBUNTU_VERSION=22.04
 FROM ubuntu:$UBUNTU_VERSION as build
 
 RUN apt-get update && \
-    apt-get install -y build-essential python3 python3-pip
+    apt-get install -y build-essential python3 python3-pip git
 
 COPY requirements.txt requirements.txt
 
index 2e629f8ce9a69ee9451f89617190e0d37a9d5a2b..fc34a0c1887f2acdb4cc69a2858a4459b5c911f7 100644 (file)
@@ -3,7 +3,7 @@ ARG UBUNTU_VERSION=22.04
 FROM ubuntu:$UBUNTU_VERSION as build
 
 RUN apt-get update && \
-    apt-get install -y build-essential
+    apt-get install -y build-essential git
 
 WORKDIR /app