From 536fe177beed0d0d0c61cf47a9ee7f5fe73aa189 Mon Sep 17 00:00:00 2001 From: Andrew Kettel Date: Mon, 16 Mar 2026 17:21:12 -0700 Subject: [PATCH] Adding apt install of libcap-dev --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8c63b45..fcdddf6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,7 +6,7 @@ # Note that environment variables can be set in several places # See https://docs.gitlab.com/ci/variables/#cicd-variable-precedence default: - image: python:3.13-slim + image: python:3.12-slim cache: key: @@ -41,6 +41,7 @@ secret_detection: install: stage: install script: + - apt-get update -qq && apt-get install -y -qq libcap-dev - pip install poetry==$POETRY_VERSION - poetry install --no-interaction artifacts: