aboutsummaryrefslogtreecommitdiff
path: root/.devops
diff options
context:
space:
mode:
authorJiří Podivín <66251151+jpodivin@users.noreply.github.com>2023-05-29 06:45:50 +0200
committerGitHub <noreply@github.com>2023-05-28 21:45:50 -0700
commit0e730dd23b0fb5f93dba574e0a48d9a69dc5dbae (patch)
tree7a18edf8a12584b64fbb0ea374988c939ce2be44 /.devops
parent3b126f654fceb4f5f195a1c2e825bb18e101188c (diff)
Adding git in container package dependencies (#1621)
Git added to build packages for version information in docker image Signed-off-by: Jiri Podivin <jpodivin@gmail.com>
Diffstat (limited to '.devops')
-rw-r--r--.devops/full.Dockerfile2
-rw-r--r--.devops/main.Dockerfile2
2 files changed, 2 insertions, 2 deletions
diff --git a/.devops/full.Dockerfile b/.devops/full.Dockerfile
index 491d676..01b3111 100644
--- a/.devops/full.Dockerfile
+++ b/.devops/full.Dockerfile
@@ -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
diff --git a/.devops/main.Dockerfile b/.devops/main.Dockerfile
index 2e629f8..fc34a0c 100644
--- a/.devops/main.Dockerfile
+++ b/.devops/main.Dockerfile
@@ -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