Git added to build packages for version information in docker image Signed-off-by: Jiri Podivin <jpodivin@gmail.com>
@@ -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
- apt-get install -y build-essential
+ apt-get install -y build-essential git
WORKDIR /app