FROM golang:1.26-alpine AS build WORKDIR /src RUN apk add --no-cache git RUN go install github.com/a-h/templ/cmd/templ@latest COPY go.mod ./ RUN go mod download COPY . . ARG VERSION=dev RUN templ generate && CGO_ENABLED=0 go build -trimpath \ -ldflags="-s -w -X git.d-ma.be/mathias/cad-atlas/internal/version.Value=${VERSION}" \ -o /out/app ./cmd/cad-atlas FROM gcr.io/distroless/static-debian12:nonroot COPY --from=build /out/app /app USER nonroot:nonroot EXPOSE 8080 ENTRYPOINT ["/app"]