aboutsummaryrefslogtreecommitdiffstats
path: root/hived/Dockerfile_distroless
blob: 77c87315784417dbddb456c3765df30271f95f8b (plain) (blame)
1
2
3
4
5
6
7
8
9
FROM golang:1.22-alpine3.20 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"]