Files
hello-svc/Dockerfile
T

12 lines
293 B
Docker

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"]