Initial scaffold: Go service, Helm chart, Kustomize overlays

This commit is contained in:
rod
2026-05-17 11:59:53 +02:00
commit 7f031a7848
13 changed files with 254 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
FROM golang:1.23-alpine AS builder
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN CGO_ENABLED=0 GOOS=linux go build -ldflags="-s -w" -o hello-svc .
FROM gcr.io/distroless/static-debian12
COPY --from=builder /app/hello-svc /hello-svc
EXPOSE 8080
ENTRYPOINT ["/hello-svc"]