From 4bce9df5641fc0c448dc37628b4a00e4b065fc10 Mon Sep 17 00:00:00 2001 From: Tanya <62726866+TanyaStere42@users.noreply.github.com> Date: Wed, 30 Oct 2024 17:43:26 -0700 Subject: [PATCH] corrected docker build command build command was missing directory reference --- docs/contribute/dev-setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contribute/dev-setup.md b/docs/contribute/dev-setup.md index 1e94f57..ae79124 100644 --- a/docs/contribute/dev-setup.md +++ b/docs/contribute/dev-setup.md @@ -7,7 +7,7 @@ The following instructions are for once you've made changes to your local forked 1. `cd` to root folder of scout 1. Build the docker image of your altered code. You'll want to tag the image for easy reference later. For this demo, we use the tag `yourimage`. ``` - docker build -t yourimage + docker build -t yourimage . ``` 1. Verify you have a successful build. Check your terminal logs for the following: ```