Skip to content

Commit 0e730dd

Browse files
authored
Adding git in container package dependencies (#1621)
Git added to build packages for version information in docker image Signed-off-by: Jiri Podivin <[email protected]>
1 parent 3b126f6 commit 0e730dd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.devops/full.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ARG UBUNTU_VERSION=22.04
33
FROM ubuntu:$UBUNTU_VERSION as build
44

55
RUN apt-get update && \
6-
apt-get install -y build-essential python3 python3-pip
6+
apt-get install -y build-essential python3 python3-pip git
77

88
COPY requirements.txt requirements.txt
99

.devops/main.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ARG UBUNTU_VERSION=22.04
33
FROM ubuntu:$UBUNTU_VERSION as build
44

55
RUN apt-get update && \
6-
apt-get install -y build-essential
6+
apt-get install -y build-essential git
77

88
WORKDIR /app
99

0 commit comments

Comments
 (0)