Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Linux Dockerfile for aks-mcp
# Build stage
FROM golang:1.25-alpine AS builder
FROM golang:1.26-alpine AS builder
ARG TARGETOS=linux
ARG TARGETARCH
ARG VERSION
Expand Down Expand Up @@ -31,7 +31,7 @@ RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build \
-o aks-mcp ./cmd/aks-mcp

# Runtime stage
FROM alpine:3.23
FROM alpine:3.24
ARG TARGETARCH

# Install required packages for kubectl and helm, plus build tools for Azure CLI
Expand Down
Loading