From 6335b425f7e1fd895051335bb60bce2286e29146 Mon Sep 17 00:00:00 2001 From: tuanvu Date: Mon, 16 Feb 2026 18:57:38 +0100 Subject: [PATCH] install docker without sudo --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 39bc0e9..4f696a0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -68,8 +68,8 @@ build_docker_frontend: - check_app_update - build_frontend script: - - sudo apt update - - sudo apt install -y docker.io + - apt update + - apt install -y docker.io - source variables.env || true - if [ "$NEW_COMMIT" != "true" ]; then echo "No new commit, skipping build";