From 57539df60392f276c36e5feea60ccc1cd7fa9dd9 Mon Sep 17 00:00:00 2001 From: Chara White <84180423+CwithW@users.noreply.github.com> Date: Fri, 14 Aug 2026 19:50:01 +0800 Subject: [PATCH] fix: install iproute2 in runtime image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 543dc8a..9a9a732 100644 --- a/Dockerfile +++ b/Dockerfile @@ -36,7 +36,7 @@ RUN CGO_ENABLED=0 GOOS=${TARGETOS:-linux} GOARCH=${TARGETARCH} go build \ # ---- Stage 3: minimal runtime ---- FROM alpine:3.20 -RUN apk add --no-cache ca-certificates ccid pcsc-lite tzdata && \ +RUN apk add --no-cache ca-certificates ccid iproute2 pcsc-lite tzdata && \ addgroup -S -g 1000 vocat && \ adduser -S -D -H -u 1000 -G vocat vocat