From b837ca8c56fb4065d1878f5c77d44ab70687b220 Mon Sep 17 00:00:00 2001
From: Ernesto Rico Schmidt <ernesto@helsinki.at>
Date: Thu, 31 Aug 2023 23:12:17 -0400
Subject: [PATCH] ci: replace 3.10-alpine with 3.10-slim-bullseye

---
 .gitlab-ci.yml | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index abc0d461..523089bb 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -14,11 +14,12 @@ stages:
 
 build-openapi-scheme:
   stage: build
-  image: python:3.10-alpine
+  image: python:3.10-slim-bullseye
   variables:
     OPENAPI_JSON: ./public/api.json
   before_script:
-    - apk add gcc musl-dev zlib-dev jpeg-dev libmagic openldap-dev
+    - apt-get update
+    - apt-get install -y gcc ldap-utils libldap-dev libmagic1 libsasl2-dev
     - pip install poetry==1.4.0
     - poetry install --without dev,test --no-root
   script:
-- 
GitLab