diff --git a/Dockerfile b/Dockerfile index a882d4c84..a7200a851 100644 --- a/Dockerfile +++ b/Dockerfile @@ -117,6 +117,19 @@ RUN \ apt-get clean \ && rm -rf /var/lib/apt/lists/* +# Begin temporary git package upgrade +RUN ARCH=`dpkg --print-architecture` \ + && cd /tmp \ + && apt-get update \ + && apt-get -y install wget \ + && wget https://static.opendev.org/project/opendev.org/debs/git/git_2.30.2-1opendev1.0_$ARCH.deb \ + && wget https://static.opendev.org/project/opendev.org/debs/git/git-man_2.30.2-1opendev1.0_all.deb \ + && apt-get -y install /tmp/git_*.deb /tmp/git-man_*.deb \ + && rm -f /tmp/*.deb \ + && apt-get clean \ + && rm -rf /var/lib/apt/lists/* +# End temporary git package upgrade + # NOTE(ianw) 2022-08-02 : move this into its own cgroup on cgroupsv2 # hosts for nested podman calls to work; see comments in # https://github.com/containers/podman/issues/14884