diff --git a/docs/tutorials/stateless-application/hello-minikube.md b/docs/tutorials/stateless-application/hello-minikube.md index 24ca4951ee..55100e364c 100644 --- a/docs/tutorials/stateless-application/hello-minikube.md +++ b/docs/tutorials/stateless-application/hello-minikube.md @@ -171,7 +171,7 @@ eval $(minikube docker-env) **Note:** Later, when you no longer wish to use the Minikube host, you can undo this change by running `eval $(minikube docker-env -u)`. -Build your Docker image, using the Minikube Docker daemon: +Build your Docker image, using the Minikube Docker daemon (mind the trailing dot): ```shell docker build -t hello-node:v1 . @@ -297,7 +297,7 @@ response.end('Hello World Again!'); ``` -Build a new version of your image: +Build a new version of your image (mind the trailing dot): ```shell docker build -t hello-node:v2 .