mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-09 10:02:56 +01:00
Add Dockerfile to build Git
We want to easily build customized versions of Git in CI jobs.
This commit is contained in:
parent
0071cbcdb8
commit
c01b31b38c
2 changed files with 11 additions and 0 deletions
9
Dockerfile.build-git
Normal file
9
Dockerfile.build-git
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue