From 6ff5319e972c5b8f0d60d2a8e25a86478f099a01 Mon Sep 17 00:00:00 2001 From: ckunki Date: Thu, 7 Mar 2024 10:25:39 +0100 Subject: [PATCH] Fixed typo in user name jupyter [run-notebook-tests] --- test/notebook_test_runner/test_notebooks_in_dss_docker_image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/notebook_test_runner/test_notebooks_in_dss_docker_image.py b/test/notebook_test_runner/test_notebooks_in_dss_docker_image.py index eef3faca..5ce0d017 100644 --- a/test/notebook_test_runner/test_notebooks_in_dss_docker_image.py +++ b/test/notebook_test_runner/test_notebooks_in_dss_docker_image.py @@ -21,7 +21,7 @@ def notebook_test_dockerfile_content(dss_docker_image) -> str: COPY notebooks/* /tmp/notebooks/ USER ubuntu RUN sudo mv /tmp/notebooks/* "$NOTEBOOK_FOLDER_INITIAL" && sudo rmdir /tmp/notebooks/ - RUN sudo chown -R juypter "$NOTEBOOK_FOLDER_INITIAL" + RUN sudo chown -R jupyter "$NOTEBOOK_FOLDER_INITIAL" RUN sudo --login --user jupyter WORKDIR $NOTEBOOK_FOLDER_INITIAL RUN "$VIRTUAL_ENV/bin/python3" -m pip install -r test_dependencies.txt