From ea3cbce3808da71d7efcc621cc018fe19b701e32 Mon Sep 17 00:00:00 2001 From: Enrique Belarte Luque Date: Wed, 5 Feb 2025 06:26:37 -0600 Subject: [PATCH] Add compression and LFS upload capabilities Signed-off-by: Enrique Belarte Luque --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index a747d4c..c5c5ea5 100644 --- a/Containerfile +++ b/Containerfile @@ -74,7 +74,7 @@ RUN dnf -y install git git-lfs && \ dnf clean all && \ rm -rf /var/cache/yum RUN --mount=type=secret,id=${AUTH_SECRET}/PRIVATE_GITLAB_TOKEN echo "export PRIVATE_GITLAB_TOKEN="$(cat /run/secrets/${AUTH_SECRET}/PRIVATE_GITLAB_TOKEN) >> /tmp/envfile -RUN source /tmp/envfile && +RUN source /tmp/envfile && \ git config --global credential.helper store && \ echo "https://${PRIVATE_GITLAB_TOKEN}:x-oauth-basic@gitlab.com" > ~/.git-credentials && \ git config --global credential.useHttpPath true