aboutsummaryrefslogtreecommitdiffstats
path: root/hived/Dockerfile_distroless
blob: c21dd2d680aac983954a6cf2c82c4035ab832bb5 (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 && go build

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