From 27d7b1dca44884a19eb8b1b32b3e2c663a2b2d7f Mon Sep 17 00:00:00 2001 From: Oleg Zhurakousky Date: Fri, 10 Nov 2023 16:19:21 +0100 Subject: [PATCH] Update README.md --- .../function-sample-aws-native/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-cloud-function-samples/function-sample-aws-native/README.md b/spring-cloud-function-samples/function-sample-aws-native/README.md index 5a4e5a0a6..00e6e8358 100644 --- a/spring-cloud-function-samples/function-sample-aws-native/README.md +++ b/spring-cloud-function-samples/function-sample-aws-native/README.md @@ -12,13 +12,13 @@ You first need to build a Docker image where you will actually build project. To do that execute the following command form [project directory ``` -$ docker build -t "al2-graalvm19:native-uppercase" . +docker build -t "al2-graalvm19:native-uppercase" . ``` Start the container ``` -$ docker run -dit -v `pwd`:`pwd` -w `pwd` -v ~/.m2:/root/.m2 al2-graalvm19:native-uppercase - ``` +docker run -dit -v `pwd`:`pwd` -w `pwd` -v ~/.m2:/root/.m2 al2-graalvm19:native-uppercase +``` Now navigate to the image terminal. Your working directory is alredy set for the root of the project. You can verify it by executing `ls`.