gitlab-build-images/Dockerfile.build-git
Christian Couder c01b31b38c Add Dockerfile to build Git
We want to easily build customized versions of Git
in CI jobs.
2020-02-06 16:53:49 +01:00

9 lines
165 B
Docker

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