diff --git a/Dockerfile b/Dockerfile index f72d0f8f..4bc7be86 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM golang:1.25-alpine as builder +FROM golang:1.26-alpine as builder ARG TARGETPLATFORM ARG TARGETARCH @@ -34,7 +34,7 @@ COPY version.go version.go RUN CGO_ENABLED=0 GOOS=linux GOARCH=$TARGETARCH go build -a -o lk ./cmd/lk -FROM alpine:3.21 +FROM alpine:3.23 COPY --from=builder /workspace/lk /lk