@@ -6,7 +6,7 @@ RUN git clone --depth 1 https://github.com/ReaJason/MemShellParty.git . && \
66 rm -rf vul integration-test tools
77
88# https://hub.docker.com/r/oven/bun
9- FROM --platform=$BUILDPLATFORM oven/bun:1.3.14 AS frontend
9+ FROM --platform=$BUILDPLATFORM oven/bun:1.4.0 AS frontend
1010
1111ARG ROUTE_ROOT_PATH=""
1212ARG CONTEXT_PATH=""
@@ -16,7 +16,7 @@ WORKDIR /usr/src/web
1616ENV VITE_APP_API_URL=${CONTEXT_PATH} \
1717 VITE_APP_BASE_PATH=${ROUTE_ROOT_PATH}/ui
1818
19- COPY --from=source /usr/src/web/package.json /usr/src/web/bun.lock /usr/src/web/source.config.ts /usr/src/web/
19+ COPY --from=source /usr/src/web/package.json /usr/src/web/bun.lock /usr/src/web/
2020COPY --from=source /usr/src/web/vendor/cfr /usr/src/web/vendor/cfr
2121
2222RUN bun install --frozen-lockfile
@@ -26,7 +26,7 @@ COPY --from=source /usr/src/web /usr/src/web
2626RUN bun run build
2727
2828# https://hub.docker.com/_/eclipse-temurin/tags?name=21.
29- FROM --platform=$BUILDPLATFORM eclipse-temurin:21.0.11_10 -jdk-noble AS backend
29+ FROM --platform=$BUILDPLATFORM eclipse-temurin:21.0.12_8 -jdk-noble AS backend
3030
3131WORKDIR /usr/src
3232
@@ -36,7 +36,7 @@ COPY --from=frontend /usr/src/boot/src/main/resources /usr/src/boot/src/main/res
3636
3737RUN ./gradlew :boot:bootjar -x test
3838
39- FROM eclipse-temurin:21.0.11_10 -jre-noble
39+ FROM eclipse-temurin:21.0.12_8 -jre-noble
4040
4141LABEL authors="ReaJason<reajason1225@gmail.com>"
4242
0 commit comments