Skip to content
This repository was archived by the owner on Mar 24, 2026. It is now read-only.

Commit c489585

Browse files
Radoslav PetrovNateBrady23
authored andcommitted
Java 11 - Update Docker images to the jdk variant (#4850)
* Update to Docker OpenJDK-JDK. The JRE variant is no more * Update Jetty to Java 11
1 parent 108f483 commit c489585

84 files changed

Lines changed: 93 additions & 88 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

frameworks/Clojure/compojure/compojure-raw.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ COPY src src
44
COPY project.clj project.clj
55
RUN lein ring uberwar
66

7-
FROM openjdk:11.0.3-jre-stretch
7+
FROM openjdk:11.0.3-jdk-stretch
88
WORKDIR /resin
99
RUN curl -sL http://caucho.com/download/resin-4.0.61.tar.gz | tar xz --strip-components=1
1010
RUN rm -rf webapps/*

frameworks/Clojure/compojure/compojure.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ COPY src src
44
COPY project.clj project.clj
55
RUN lein ring uberwar
66

7-
FROM openjdk:11.0.3-jre-stretch
7+
FROM openjdk:11.0.3-jdk-stretch
88
WORKDIR /resin
99
RUN curl -sL http://caucho.com/download/resin-4.0.61.tar.gz | tar xz --strip-components=1
1010
RUN rm -rf webapps/*

frameworks/Java/activeweb/activeweb-jackson.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ COPY scripts scripts
55
COPY src src
66
RUN mvn package -DskipTests -q
77

8-
FROM openjdk:11.0.3-jre-stretch
8+
FROM openjdk:11.0.3-jdk-stretch
99
WORKDIR /resin
1010
RUN curl -sL http://caucho.com/download/resin-4.0.61.tar.gz | tar xz --strip-components=1
1111
RUN rm -rf webapps/*

frameworks/Java/activeweb/activeweb.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ COPY scripts scripts
55
COPY src src
66
RUN mvn package -DskipTests -q
77

8-
FROM openjdk:11.0.3-jre-stretch
8+
FROM openjdk:11.0.3-jdk-stretch
99
WORKDIR /resin
1010
RUN curl -sL http://caucho.com/download/resin-4.0.61.tar.gz | tar xz --strip-components=1
1111
RUN rm -rf webapps/*

frameworks/Java/armeria/armeria.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ COPY src src
44
COPY pom.xml pom.xml
55
RUN mvn compile assembly:single -q
66

7-
FROM openjdk:11.0.3-jre-slim
7+
FROM openjdk:11.0.3-jdk-slim
88
WORKDIR /armeria
99
COPY --from=maven /armeria/target/hello-1.0-SNAPSHOT-jar-with-dependencies.jar app.jar
1010
CMD ["java", "-server", "-XX:+UseNUMA", "-XX:+UseParallelGC", "-XX:+AggressiveOpts", "-jar", "app.jar"]

frameworks/Java/baratine/baratine.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ COPY pom.xml pom.xml
44
COPY src src
55
RUN mvn package -q
66

7-
FROM openjdk:11.0.3-jre-slim
7+
FROM openjdk:11.0.3-jdk-slim
88
WORKDIR /baratine
99
COPY --from=maven /baratine/target/testTechempowerBaratine-0.0.1-SNAPSHOT.jar app.jar
1010
CMD ["java", "-jar", "app.jar", "tfb-database"]

frameworks/Java/bayou/bayou.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ COPY pom.xml pom.xml
44
COPY src src
55
RUN mvn compile assembly:single -q
66

7-
FROM openjdk:11.0.3-jre-slim
7+
FROM openjdk:11.0.3-jdk-slim
88
WORKDIR /bayou
99
COPY --from=maven /bayou/target/bayou_TFB-0.1-jar-with-dependencies.jar app.jar
1010
CMD ["java", "-jar", "app.jar"]

frameworks/Java/blade/blade.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ COPY pom.xml pom.xml
44
COPY src src
55
RUN mvn package -q
66

7-
FROM openjdk:11.0.3-jre-slim
7+
FROM openjdk:11.0.3-jdk-slim
88
WORKDIR /blade
99
COPY --from=maven /blade/target/hello-blade-latest.jar app.jar
1010

frameworks/Java/curacao/curacao.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ COPY pom.xml pom.xml
44
COPY src src
55
RUN mvn compile war:war -q
66

7-
FROM openjdk:11.0.3-jre-stretch
7+
FROM openjdk:11.0.3-jdk-stretch
88
WORKDIR /resin
99
RUN curl -sL http://caucho.com/download/resin-4.0.61.tar.gz | tar xz --strip-components=1
1010
RUN rm -rf webapps/*

frameworks/Java/dropwizard/dropwizard-jdbi-postgres.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ COPY pom.xml pom.xml
44
COPY src src
55
RUN mvn package -q -P postgres,jdbi
66

7-
FROM openjdk:11.0.3-jre-slim
7+
FROM openjdk:11.0.3-jdk-slim
88
WORKDIR /dropwizard
99
COPY --from=maven /dropwizard/target/hello-world-0.0.1-SNAPSHOT.jar app.jar
1010
COPY hello-world-jdbi-postgres.yml hello-world-jdbi-postgres.yml

0 commit comments

Comments
 (0)