diff --git a/examples/demo/client/Dockerfile b/examples/demo/client/Dockerfile index 2e144949cc7d..6922d6027bfb 100644 --- a/examples/demo/client/Dockerfile +++ b/examples/demo/client/Dockerfile @@ -5,6 +5,6 @@ WORKDIR /app/ COPY . . RUN go env -w GOPROXY=direct RUN CGO_ENABLED=0 go build -o main main.go -FROM alpine:3.19 +FROM alpine:3.20.3 COPY --from=build /app/main /app/main CMD ["/app/main"]