fix: Eclipse Temurin typos

Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
This commit is contained in:
David Karlsson 2023-07-04 15:40:51 +02:00
parent ba7baaf319
commit 093d6e2b27
1 changed files with 2 additions and 2 deletions

View File

@ -83,7 +83,7 @@ we would like to use for our application.
FROM eclipse-temurin:17-jdk-jammy
```
Docker images can be inherited from other images. For this guide, we use Eclipse Termurin, one of the most popular official images with a build-worthy JDK.
Docker images can be inherited from other images. For this guide, we use Eclipse Temurin, one of the most popular official images with a build-worthy JDK.
To make things easier when running the rest of our commands, lets set the image's
working directory. This instructs Docker to use this path as the default location
@ -118,7 +118,7 @@ but this time the dependencies will be installed into the image.
RUN ./mvnw dependency:resolve
```
At this point, we have an Eclipse Termurin image that is based on OpenJDK version 17, and we have also installed our dependencies. The next thing we need to do is to add our source code into the image. Well use the `COPY` command just like we did with our `pom.xml` file above.
At this point, we have an Eclipse Temurin image that is based on OpenJDK version 17, and we have also installed our dependencies. The next thing we need to do is to add our source code into the image. Well use the `COPY` command just like we did with our `pom.xml` file above.
```dockerfile
COPY src ./src