From acb62e77fc9aaefe49eb75ae20a3993f4a3e16a1 Mon Sep 17 00:00:00 2001 From: Kevin Albertson Date: Sun, 29 Sep 2024 19:49:22 -0400 Subject: [PATCH] fix references of `springbootdocker` Directory is `spring_boot_docker`, not `springbootdocker` --- .../docker-concepts/building-images/multi-stage-builds.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/get-started/docker-concepts/building-images/multi-stage-builds.md b/content/get-started/docker-concepts/building-images/multi-stage-builds.md index f2c90777bb..ea8f51710f 100644 --- a/content/get-started/docker-concepts/building-images/multi-stage-builds.md +++ b/content/get-started/docker-concepts/building-images/multi-stage-builds.md @@ -110,12 +110,12 @@ In this hands-on guide, you'll unlock the power of multi-stage builds to create 4. Create a RESTful web service that displays "Hello World!". - Under the `src/main/java/com/example/springbootdocker/` directory, you can modify your + Under the `src/main/java/com/example/spring_boot_docker/` directory, you can modify your `SpringBootDockerApplication.java` file with the following content: ```java - package com.example.springbootdocker; + package com.example.spring_boot_docker; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @@ -139,7 +139,7 @@ In this hands-on guide, you'll unlock the power of multi-stage builds to create } ``` - The `SpringbootDockerApplication.java` file starts by declaring your `com.example.springbootdocker` package and importing necessary Spring frameworks. This Java file creates a simple Spring Boot web application that responds with "Hello World" when a user visits its homepage. + The `SpringbootDockerApplication.java` file starts by declaring your `com.example.spring_boot_docker` package and importing necessary Spring frameworks. This Java file creates a simple Spring Boot web application that responds with "Hello World" when a user visits its homepage. ### Create the Dockerfile