From c3787aab2e37597973f236db00b9dbae06df85e5 Mon Sep 17 00:00:00 2001 From: merlin Date: Wed, 5 Nov 2025 16:31:43 +0800 Subject: [PATCH] fix(Dockerfile): remove debug tools --- Dockerfile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 79ffe5b..5e8c8e6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,13 +13,13 @@ RUN --mount=type=cache,target=/root/.m2 mvn -B -q package -DskipTests FROM harbor.merlin.xin/mirrors/docker.io/library/eclipse-temurin:17-jre-alpine # >>> Install debug tools <<< -RUN apk update && apk add --no-cache \ - curl \ - bind-tools \ - busybox-extras \ - iproute2 \ - tcpdump \ - net-tools +#RUN apk update && apk add --no-cache \ +# curl \ +# bind-tools \ +# busybox-extras \ +# iproute2 \ +# tcpdump \ +# net-tools WORKDIR /app COPY --from=builder /app/target/*.jar app.jar