Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion articles/flow/production/docker.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ The following example shows a suitable Dockerfile for Spring Boot-based Vaadin a
.`Dockerfile`
[source,dockerfile]
----
FROM openjdk:17-jdk-slim
FROM eclipse-temurin:25-jre
COPY target/*.jar app.jar
EXPOSE 8080
ENTRYPOINT ["java", "-jar", "/app.jar"]
Expand Down
2 changes: 1 addition & 1 deletion articles/tools/kubernetes/getting-started.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ Next, create the following `Dockerfile` file in the project directory:

[source,Dockerfile]
----
FROM openjdk:17-jdk-slim
FROM eclipse-temurin:25-jre
COPY target/*.jar /usr/app/app.jar
RUN useradd -m myuser
USER myuser
Expand Down
Loading