From 5ff76ce8c05cb595c935dc0f9af40a236200f6d2 Mon Sep 17 00:00:00 2001
From: Michael Blaschek <michael.blaschek@univie.ac.at>
Date: Wed, 14 May 2025 14:41:11 +0000
Subject: [PATCH] Update .gitlab-ci.yml file to include the wait for
 create-image

---
 .gitlab-ci.yml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ddc9c08..8178f74 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -17,6 +17,14 @@ create-image:
 build:
   image: $CI_REGISTRY/imgw/computer-resources:latest
   stage: build
+  rules:
+    - changes:
+      - Dockerfile
+      - requirements.txt
+      needs:
+        - create-image
+    - when: always
+
   script:
     # --strict is too strict :)
     - mkdocs build -c --verbose
-- 
GitLab