From: garciadeblas Date: Wed, 17 Dec 2025 10:20:33 +0000 (+0100) Subject: Update LCM Dockerfile to include git, required for GitPython dependency X-Git-Tag: v19.0.0~17 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=refs%2Fchanges%2F13%2F15613%2F5;p=osm%2Fdevops.git Update LCM Dockerfile to include git, required for GitPython dependency Change-Id: Iec1905cf0da889dc5afca9a5df1c238c51da7125 Signed-off-by: garciadeblas --- diff --git a/docker/LCM/Dockerfile b/docker/LCM/Dockerfile index c241515cc..e361eaa50 100644 --- a/docker/LCM/Dockerfile +++ b/docker/LCM/Dockerfile @@ -39,7 +39,8 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \ apt-transport-https=2.4.* \ gnupg2=2.2.* \ openssh-client=1:8.* \ - git \ + git=1:2.* \ + libcurl4-openssl-dev=7.81.* \ && rm -rf /var/lib/apt/lists/* # https://kubernetes.io/releases/ @@ -102,8 +103,10 @@ COPY --from=INSTALL /usr/local/bin/helm3 /usr/local/bin/helm3 COPY --from=INSTALL /usr/bin/scp /usr/bin/scp COPY --from=INSTALL /usr/bin/ssh-keygen /usr/bin/ssh-keygen COPY --from=INSTALL /usr/bin/ssh /usr/bin/ssh +COPY --from=INSTALL /usr/bin/git /usr/bin/git COPY --from=INSTALL /usr/lib/x86_64-linux-gnu/ /usr/lib/x86_64-linux-gnu/ COPY --from=INSTALL /lib/x86_64-linux-gnu/ /lib/x86_64-linux-gnu/ +COPY --from=INSTALL /usr/lib/git-core/ /usr/lib/git-core/ COPY scripts/ /app/osm_lcm/scripts/