From 46e92f69ac2bbb4f5f801e48d183519d27dc912f Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Fri, 28 Jul 2023 22:13:06 +0400 Subject: [PATCH] Unify docker build command --- docs/using/recipes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/using/recipes.md b/docs/using/recipes.md index 9be8582f..74952607 100644 --- a/docs/using/recipes.md +++ b/docs/using/recipes.md @@ -41,7 +41,7 @@ To use a requirements.txt file, first, create your `requirements.txt` file with Then build a new image. ```bash -docker build --rm -t my-custom-image . +docker build --rm --tag my-custom-image . ``` ## Add a custom conda environment and Jupyter kernel @@ -96,7 +96,7 @@ Create the Dockerfile as: And build the image as: ```bash -docker build --tag my-custom-image . +docker build --rm --tag my-custom-image . ``` Once built, run using the command: