From 7703bf1b3eeac5b64324f5da1082fcdc15279c02 Mon Sep 17 00:00:00 2001 From: Jonas Eppelt <jonas.eppelt@kit.edu> Date: Fri, 25 Aug 2023 12:01:15 +0000 Subject: [PATCH] bugfix --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5e8667f..1abe2dd 100755 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -38,7 +38,7 @@ create_jupytermachine_version: # Replace "basic_jupytermachine" with the new base image name NEW_BASE_IMAGE=$IMAGE_PREFIX/etp_$image; echo $NEW_BASE_IMAGE; - sed -i "s/$OLD_BASE_IMAGE/$NEW_BASE_IMAGE/" "Dockerfile"; + sed -i "s#$OLD_BASE_IMAGE#$NEW_BASE_IMAGE#" "Dockerfile" cat Dockerfile; # Build the second version of the container docker build -t "$IMAGE_PREFIX/jupytermachine_${image}" -f "Dockerfile" .; -- GitLab