Dockerfile: add git package to the image

This enables code to be checked out from within the running container as is
typically used by CI runners.
This commit is contained in:
Mark Cave-Ayland 2022-10-17 22:24:08 +01:00 committed by Wolfgang Thaller
parent bde1485a9e
commit 86a16a78cf
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
cmake libgmp-dev libmpfr-dev libmpc-dev \
libboost-all-dev bison texinfo \
ruby flex curl g++
ruby flex curl g++ git
# Build image
FROM base AS build