Files
drone-helm3/Dockerfile
T
naumso d4248241f4
continuous-integration/drone/push Build is passing
upd
2026-07-10 13:15:31 +03:00

19 lines
484 B
Docker

FROM golang:1.24-alpine3.21 AS builder
ENV GO111MODULE=on
WORKDIR /app
COPY --link go.mod .
COPY --link go.sum .
RUN go mod download
COPY --link . .
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o /go/bin/drone-helm ./cmd/drone-helm
# --- Copy the cli to an image with helm already installed ---
FROM alpine/helm:4.2.3
COPY --link --from=builder /go/bin/drone-helm /bin/drone-helm
COPY --link ./assets/kubeconfig.tpl /root/.kube/config.tpl
ENTRYPOINT [ "/bin/drone-helm" ]