Skip to content

Commit 8a8db42

Browse files
chore(deps): update eclipse-temurin docker tag
1 parent 1dd8322 commit 8a8db42

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

kotlin-web-spring-boot-3/docker/dev-debug.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# FROM eclipse-temurin:17-jre-alpine AS builder
22
# Should move to use Ubuntu for production environment
33
# Refer: https://www.dotcms.com/blog/post/moving-to-ubuntu-for-our-docker-image
4-
FROM eclipse-temurin:21.0.2_13-jre-alpine AS builder
4+
FROM eclipse-temurin:21.0.5_11-jre-alpine AS builder
55
ARG JAR_FILE=../build/libs/*.jar
66
WORKDIR /workspace/
77
COPY $JAR_FILE ./app.jar
88
RUN java -Djarmode=layertools -jar ./app.jar extract
99

10-
FROM eclipse-temurin:21.0.2_13-jre-alpine
10+
FROM eclipse-temurin:21.0.5_11-jre-alpine
1111
RUN addgroup webappgroup; adduser --ingroup webappgroup --disabled-password webapp
1212
USER webapp
1313
WORKDIR /workspace/

kotlin-web-spring-boot-3/docker/dev-jlink.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM eclipse-temurin:21.0.2_13-jdk-alpine AS builder
1+
FROM eclipse-temurin:21.0.5_11-jdk-alpine AS builder
22
ARG JAR_FILE=../build/libs/*.jar
33
WORKDIR /workspace/
44
RUN $JAVA_HOME/bin/jlink --add-modules java.se,jdk.jdwp.agent --strip-debug --no-man-pages --no-header-files --compress=2 --output ./jre/

kotlin-web-spring-boot-3/docker/dev.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# FROM eclipse-temurin:17-jre-alpine AS builder
22
# Should move to use Ubuntu for production environment
33
# Refer: https://www.dotcms.com/blog/post/moving-to-ubuntu-for-our-docker-image
4-
FROM eclipse-temurin:21.0.2_13-jre-alpine AS builder
4+
FROM eclipse-temurin:21.0.5_11-jre-alpine AS builder
55
ARG JAR_FILE=../build/libs/*.jar
66
WORKDIR /workspace/
77
COPY $JAR_FILE ./app.jar
88
RUN java -Djarmode=layertools -jar ./app.jar extract
99

10-
FROM eclipse-temurin:21.0.2_13-jre-alpine
10+
FROM eclipse-temurin:21.0.5_11-jre-alpine
1111
RUN addgroup webappgroup; adduser --ingroup webappgroup --disabled-password webapp
1212
USER webapp
1313
WORKDIR /workspace/

0 commit comments

Comments
 (0)