From d1cf896dc17959e09397498bb1e27fbb5de474c7 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 22 Jun 2026 13:46:03 +0000 Subject: [PATCH] Update alpine Docker tag to v3.24 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4ed7c52..8be202a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ WORKDIR /app COPY . . RUN go build -o kforge . -FROM alpine:3.19 +FROM alpine:3.24 COPY --from=builder /app/kforge /usr/local/bin/kforge RUN apk add --no-cache curl docker-cli && \ curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" && \