From b4b62408fee126daa14ab67016404f264b7c2d1c Mon Sep 17 00:00:00 2001
From: Christian Winter <c.winter@kit.edu>
Date: Mon, 30 Oct 2023 11:46:11 +0000
Subject: [PATCH] debug pipeline again

---
 .gitlab-ci.yml   |  8 ++++----
 basis/Dockerfile | 42 +++++++++++++++++++++---------------------
 2 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 85a74b3..f549f55 100755
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -35,25 +35,25 @@ tp:
   variables:
     IMAGE_NAME: "tp"
   extends:
-    - ..extend_build_image:
+    - .extend_build_image
 
 python311:
   variables:
     IMAGE_NAME: "python311"
   extends:
-    - ..extend_build_image:
+    - .extend_build_image
 
 basis_jupytermachine:
   variables:
     IMAGE_NAME: "basis_jupytermachine"
   extends:
-    - ..extend_build_image:
+    - .extend_build_image
 
 tp_herwig:
   variables:
     IMAGE_NAME: "tp_herwig"
   extends:
-    - ..extend_build_image:
+    - .extend_build_image
 
 create_jupytermachine_version:
   stage: create_jupytermachine_version
diff --git a/basis/Dockerfile b/basis/Dockerfile
index 4696e90..367dcc7 100755
--- a/basis/Dockerfile
+++ b/basis/Dockerfile
@@ -24,27 +24,27 @@ RUN apt-get update -y && apt-get upgrade -y && \
 
 
 ### installing pip packages
-RUN pip install numpy \
-                matplotlib \
-                scipy \
-                seaborn \
-                uncertainties \
-                pyunfold \
-                PhyPraKit \
-                pandas \
-                kafe2 \
-                pydot \
-                graphviz \
-                scikit-learn \
-                jupytext \
-                nbgitpuller \
-                jupyterlab-git \
-                ipympl \
-                pyarrow \
-                ipywidgets \
-                jupyter-server \
-                bash_kernel \
-                --upgrade --no-cache-dir
+RUN pip install --upgrade --no-cache-dir \
+    numpy \
+    matplotlib \
+    scipy \
+    seaborn \
+    uncertainties \
+    pyunfold \
+    PhyPraKit \
+    pandas \
+    kafe2 \
+    pydot \
+    graphviz \
+    scikit-learn \
+    jupytext \
+    nbgitpuller \
+    jupyterlab-git \
+    ipympl \
+    pyarrow \
+    ipywidgets \
+    jupyter-server \
+    bash_kernel
 
 RUN pip install iminuit --no-cache-dir
 
-- 
GitLab