From f06f00188cf05d1f10514ad0cc68538378f4578d Mon Sep 17 00:00:00 2001 From: Mark Date: Sat, 1 Oct 2022 18:21:33 -0700 Subject: [PATCH] fixed a typo --- jupyter/build/build.fish | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/jupyter/build/build.fish b/jupyter/build/build.fish index 9e20362..e5b6e02 100755 --- a/jupyter/build/build.fish +++ b/jupyter/build/build.fish @@ -41,9 +41,10 @@ end # Base image MUST be built first printf "Building base image...\n" -docker $root_dir/build \ +docker build \ --quiet=$is_quiet \ - -t betalupi/jupyter-inter-0 + -t betalupi/jupyter-inter-0 \ + $root_dir/base printf "Done. \n\n"