From 507c41b2c0c25f23c3eeeaf04dea2e77a56e0b16 Mon Sep 17 00:00:00 2001 From: ReaJason Date: Sun, 28 Jun 2026 23:23:06 +0800 Subject: [PATCH] chore: upgrade build image --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1facdff0..3d41ea28 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ RUN git clone --depth 1 https://github.com/ReaJason/MemShellParty.git . && \ rm -rf vul integration-test tools # https://hub.docker.com/r/oven/bun -FROM --platform=$BUILDPLATFORM oven/bun:1.3.11 AS frontend +FROM --platform=$BUILDPLATFORM oven/bun:1.3.14 AS frontend ARG ROUTE_ROOT_PATH="" ARG CONTEXT_PATH="" @@ -24,8 +24,8 @@ COPY --from=source /usr/src/web /usr/src/web RUN bun run build -# https://hub.docker.com/_/eclipse-temurin/tags?name=17. -FROM --platform=$BUILDPLATFORM eclipse-temurin:17.0.17_10-jdk-noble AS backend +# https://hub.docker.com/_/eclipse-temurin/tags?name=21. +FROM --platform=$BUILDPLATFORM eclipse-temurin:21.0.11_10-jdk-noble AS backend WORKDIR /usr/src @@ -35,7 +35,7 @@ COPY --from=frontend /usr/src/boot/src/main/resources /usr/src/boot/src/main/res RUN ./gradlew :boot:bootjar -x test -FROM eclipse-temurin:17.0.17_10-jre-noble +FROM eclipse-temurin:21.0.11_10-jre-noble LABEL authors="ReaJason"