From 94c5e72b8bfc7c613d0b03a6fe6d7a8247b6d019 Mon Sep 17 00:00:00 2001 From: Owen Date: Tue, 16 Dec 2025 17:16:58 -0500 Subject: [PATCH] Install iputils not ping Former-commit-id: b8349aab4edc9995ff6f11535440eb7a14c3f80a --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8eab800..197ac84 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ RUN CGO_ENABLED=0 GOOS=linux go build -ldflags="-s -w" -o /newt FROM alpine:3.23 AS runner -RUN apk --no-cache add ca-certificates tzdata ping +RUN apk --no-cache add ca-certificates tzdata iputils COPY --from=builder /newt /usr/local/bin/ COPY entrypoint.sh /