From 2d1014bb0e132bf592700e5561a77150dc35727c Mon Sep 17 00:00:00 2001 From: Michael Thiel <michael.thiel@fh-muenster.de> Date: Tue, 19 Nov 2024 14:18:25 +0100 Subject: [PATCH] adaptions for new jupyter server --- .gitlab-ci.yml | 4 ++-- Dockerfile | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2dcb0cc..a627c5c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,5 +9,5 @@ docker-build-master: before_script: - docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY script: - - docker build --pull -t "$CI_REGISTRY_IMAGE":prod . - - docker push "$CI_REGISTRY_IMAGE":prod + - docker build --pull -t "$CI_REGISTRY_IMAGE":prodcc4 . + - docker push "$CI_REGISTRY_IMAGE":prodcc4 diff --git a/Dockerfile b/Dockerfile index 1de2bf3..43d97b0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM jupyter/tensorflow-notebook:hub-1.5.0 +FROM quay.io/jupyter/tensorflow-notebook:hub-5.2.0 USER root @@ -7,6 +7,7 @@ RUN pip3 install --upgrade pip RUN mamba update mamba # Conda packages +RUN mamba install -c conda-forge jupyter-server-proxy==4.4.0 RUN mamba install -c conda-forge control RUN mamba install -c conda-forge casadi RUN mamba install -c conda-forge jax -- GitLab