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 apps/dockerfiles/Dockerfile.01-multi-stage
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ COPY src ./src/

RUN mvn clean package -DskipTests -ntp && mv target/store-spring-1.0.0-exec.jar store-spring.jar

FROM public.ecr.aws/docker/library/amazoncorretto:25-al2023
FROM public.ecr.aws/docker/library/amazoncorretto:26-al2023

RUN yum install -y shadow-utils

Expand Down
2 changes: 1 addition & 1 deletion apps/dockerfiles/Dockerfile.03-custom-jre
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ RUN export JAVA_TOOL_OPTIONS="-Djdk.lang.Process.launchMechanism=vfork" && \
--no-header-files --no-man-pages --output custom-jre \
--add-modules $(cat jre-deps.info)

FROM public.ecr.aws/docker/library/amazoncorretto:25-al2023
FROM public.ecr.aws/docker/library/amazoncorretto:26-al2023

RUN yum install -y shadow-utils

Expand Down
2 changes: 1 addition & 1 deletion apps/dockerfiles/Dockerfile.04-soci
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN mvn clean package -DskipTests -ntp && \
mv target/store-spring-1.0.0-exec.jar store-spring.jar && \
java -Djarmode=layertools -jar store-spring.jar extract

FROM public.ecr.aws/docker/library/amazoncorretto:25-al2023
FROM public.ecr.aws/docker/library/amazoncorretto:26-al2023

RUN yum install -y shadow-utils

Expand Down
4 changes: 2 additions & 2 deletions apps/dockerfiles/Dockerfile.06-aot
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN mvn clean package -DskipTests -ntp \
-Dspring-boot.aot.enabled=true && \
mv target/store-spring-1.0.0-exec.jar app.jar

FROM public.ecr.aws/docker/library/amazoncorretto:25-al2023 AS trainer
FROM public.ecr.aws/docker/library/amazoncorretto:26-al2023 AS trainer

COPY --from=builder app.jar app.jar

Expand Down Expand Up @@ -55,7 +55,7 @@ RUN set -e; \
${OPTS} ${MAIN_CLASS} || true && \
test -s /opt/app/app.aot

FROM public.ecr.aws/docker/library/amazoncorretto:25-al2023
FROM public.ecr.aws/docker/library/amazoncorretto:26-al2023

RUN yum install -y shadow-utils && \
groupadd --system spring -g 1000 && \
Expand Down
2 changes: 1 addition & 1 deletion apps/dockerfiles/Dockerfile.07-native
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ COPY src ./src/
ENV MAVEN_OPTS='-Xmx8g'
RUN bash -c "source $HOME/.sdkman/bin/sdkman-init.sh && mvn -DskipTests -ntp clean package -Pnative"

FROM public.ecr.aws/docker/library/amazoncorretto:25-al2023
FROM public.ecr.aws/docker/library/amazoncorretto:26-al2023

RUN yum install -y shadow-utils

Expand Down
Loading