Initial scaffold: Go service, Helm chart, Kustomize overlays
This commit is contained in:
+11
@@ -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"]
|
||||
Reference in New Issue
Block a user