FROM golang:1.23.6 AS build WORKDIR /code RUN go install github.com/a-h/templ/cmd/templ@latest COPY go.mod ./ COPY go.sum ./ RUN go mod download COPY . . RUN make CGO_ENABLED=0 FROM alpine:3.21 COPY --from=build /code/dumb . CMD ["./dumb"]