diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3d78a40da1b9619b6b779c8a693a7e0491690fdd..a858121ce3346a139f31b524686ba4d998494a2b 100755 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -73,12 +73,27 @@ tp_herwig: - basis/* allow_failure: true +theoc: + varibles: + IMAGE_NAME: "theoc" + extends: + - .commin_build + needs: + - job: tp + optional: true + rules: + - changes: + - $IMAGE_NAME/Dockerfile + - tp /* + - basis /* + allow_failure: true + create_jupytermachine_version: stage: create_jupytermachine_version image: docker:latest script: - | - IMAGES=( "basis" "tp" "python311" "tp_herwig") # "tp_geant" "cuda_basis" + IMAGES=( "basis" "tp" "python311" "tp_herwig" "theoc") # "tp_geant" "cuda_basis" docker login -u "$DOCKER_HUB_USER" -p $DOCKER_TOKEN cd basis_jupytermachine for image in "${IMAGES[@]}"; do diff --git a/theoc/Dockerfile b/theoc/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..2e70ff5dfc3b99fe20054cfbb0f8de70adfecd76 --- /dev/null +++ b/theoc/Dockerfile @@ -0,0 +1,7 @@ +FROM jeppelt/etp_tp + +USER root + +RUN pip install --upgrade multipoles + +USER $NB_USER \ No newline at end of file