From 6552c930320c802c2a4edff841a2046759d7235e Mon Sep 17 00:00:00 2001 From: William Allen <16820599+williamjallen@users.noreply.github.com> Date: Mon, 9 Sep 2024 15:46:04 -0400 Subject: [PATCH] [Bugfix:Autograding] Fix location of Jupyter Dockerfile (#47) ### What is the current behavior? #40 inadvertently put the Jupyter Dockerfile in the wrong directory. ### What is the new behavior? Fixes the directory structure. --- dockerfiles/jupyter/{ => jupyter}/Dockerfile | 2 +- dockerfiles/jupyter/metadata.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) rename dockerfiles/jupyter/{ => jupyter}/Dockerfile (78%) diff --git a/dockerfiles/jupyter/Dockerfile b/dockerfiles/jupyter/jupyter/Dockerfile similarity index 78% rename from dockerfiles/jupyter/Dockerfile rename to dockerfiles/jupyter/jupyter/Dockerfile index 3de0954..4433ce3 100644 --- a/dockerfiles/jupyter/Dockerfile +++ b/dockerfiles/jupyter/jupyter/Dockerfile @@ -5,4 +5,4 @@ RUN apt-get install python3.10 pip -y RUN pip install --upgrade pip==22.0.2 -RUN pip install notebook +RUN pip install notebook==7.2.2 diff --git a/dockerfiles/jupyter/metadata.json b/dockerfiles/jupyter/metadata.json index 322dbf9..ccccaf7 100644 --- a/dockerfiles/jupyter/metadata.json +++ b/dockerfiles/jupyter/metadata.json @@ -1,3 +1,4 @@ { + "latestTag": "7.2", "pushLatest": true }