From 97b06358c902af77503585c91aa5a840e86b8b43 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=B6ren=20Henning?= <soeren.henning@email.uni-kiel.de>
Date: Fri, 28 Jan 2022 14:40:34 +0100
Subject: [PATCH] Use Docker base image

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index bcc3e53ed..b81d1333a 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -360,12 +360,21 @@ deploy-uc4-load-generator:
   stage: smoketest
   extends:
     - .dind
-  image: docker/compose:1.29.2
   before_script:
-    - cd theodolite-benchmarks/docker-test
+    - apk update
+    - apk add -U jq
+    - apk add py-pip python3-dev libffi-dev openssl-dev gcc libc-dev rust cargo make
+    - pip install docker-compose
+  variables:
+    TEST_LOG_FILE: "test.log"
   script:
+    - cd theodolite-benchmarks/docker-test
     - export THEODOLITE_TAG=$PUBLISHED_IMAGE_TAG
     - ./smoketest-runner.sh ./$DOCKER_COMPOSE_DIR
+    - cat test.log
+  after_script:
+    - cd ./$DOCKER_COMPOSE_DIR
+    - docker-compose down
   rules:
     - changes:
       - theodolite-benchmarks/*
-- 
GitLab