Add Dockerfile to build Git

We want to easily build customized versions of Git
in CI jobs.
This commit is contained in:
Christian Couder 2020-02-06 16:35:34 +01:00
parent 0071cbcdb8
commit c01b31b38c
2 changed files with 11 additions and 0 deletions

9
Dockerfile.build-git Normal file
View file

@ -0,0 +1,9 @@
FROM gcc:latest
ADD / /
# Install prereqs for building Git
RUN apt-get update && apt-get install -y gettext
RUN /scripts/install-pcre2 && pcre2-config --version