Dockerfile: Fix dead git repo URL

The repository for git sources hosted at repo.or.cz no longer exists.
Change URL to repository hosted on salsa.

Signed-off-by: Andreas Gnau <andreas.gnau@iopsys.eu>
This commit is contained in:
Andreas Gnau
2025-10-15 13:34:01 +02:00
parent dc2e8a96fb
commit fd4d632eae

View File

@@ -6,7 +6,7 @@ RUN set -x && apt-get -y update && \
git \
equivs \
&& \
git clone https://repo.or.cz/git/debian.git /git-debian && \
git clone https://salsa.debian.org/jrnieder/git.git /git-debian && \
git -C /git-debian checkout "$GIT_DEB_GIT_COMMIT" && \
mk-build-deps -i -t 'apt-get -o Debug::pkgProblemResolver=yes -y' /git-debian/debian/control && \
(cd /git-debian && debuild -eDEB_BUILD_OPTIONS="parallel=$(nproc)" -us -uc -b) && \