From 5cc849fb99c1a85b65769c3737c76ebda0e39687 Mon Sep 17 00:00:00 2001 From: Martin Weise <martin.weise@tuwien.ac.at> Date: Sun, 7 Jan 2024 15:40:44 +0100 Subject: [PATCH] Need pipenv --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index af5ebbcf91..347f3278dc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -30,7 +30,8 @@ build-analyse-service: image: python:3.9-slim stage: build script: - - "pip install -r ./dbrepo-analyse-service/requirements.txt" + - apt-get update && apt-get install -y pipenv + - "PIPENV_PIPFILE=./dbrepo-analyse-service/Pipfile pipenv install --dev" build-data-service: image: maven:3-openjdk-17 -- GitLab