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