From 51478cabcd94f867169d17bbbcfdc0bfa0c5c497 Mon Sep 17 00:00:00 2001 From: Madhura Bhave Date: Tue, 26 Nov 2019 13:18:54 -0800 Subject: [PATCH] Fix typo --- .../spring-boot-docs/src/main/asciidoc/deployment.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/deployment.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/deployment.adoc index da0ef35e407b..4e02fa4bb26c 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/deployment.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/deployment.adoc @@ -54,7 +54,7 @@ For example, using a `Dockerfile` you could express it in this form: ENTRYPOINT ["java","-cp","app:app/lib/*","com.example.MyApplication"] ---- -Assuming the above `Dockerfile` is the current directory, your docker image can be built with `docker build .`, or optionally specifying the path to your application jar, as show in the following example: +Assuming the above `Dockerfile` is the current directory, your docker image can be built with `docker build .`, or optionally specifying the path to your application jar, as shown in the following example: [indent=0] ----