aboutsummaryrefslogtreecommitdiffstats
path: root/hived/Dockerfile_distroless
blob: 099171f69e14db4f8599ad9685a9c85978b9e7c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
FROM golang:1.24-alpine3.22 AS builder
COPY go.* /hived/
RUN cd /hived && go mod download
COPY *.go /hived/
RUN cd /hived && CGO_ENABLED=0 go build

FROM gcr.io/distroless/static-debian12
COPY --from=builder /hived/hived "/usr/bin/hived"
ENTRYPOINT ["hived"]