From 2034192e2fbdfc3901ab80f35e239cf5cad63dbd Mon Sep 17 00:00:00 2001 From: tuanvu Date: Mon, 16 Feb 2026 14:39:36 +0100 Subject: [PATCH] change alpine to debian --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7ac8916..6ae336a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -15,9 +15,9 @@ variables: check_app_update: stage: check - image: alpine:latest + image: debian:latest before_script: - - apk add --no-cache git + - apt-get update && apt-get install -y git script: # Récupère le dernier commit distant - LATEST_REMOTE=$(git ls-remote $APP_REPO HEAD | awk '{print $1}')