stagex/packages/helm/Containerfile

37 lines
905 B
Text
Raw Normal View History

2024-08-08 07:47:42 +00:00
FROM scratch AS base
ENV VERSION=3.14.3
ENV SRC_HASH=e0d46f69954002d27eaac3bd6543ee4f486cdd3795c5aac921e7f02791df8d8e
ENV SRC_FILE=v${VERSION}.tar.gz
ENV SRC_SITE=https://github.com/helm/helm/archive/refs/tags/${SRC_FILE}
ENV GOPATH=/cache/go
ENV GOCACHE=/cache/
ENV GOWORK=off
ENV GOPROXY=https://proxy.golang.org,direct
ENV GOSUMDB=sum.golang.org
ENV CGO_ENABLED=0
ENV GOHOSTOS=linux
ENV GOHOSTARCH=amd64
ENV GO11MODULE=on
2024-08-08 07:47:42 +00:00
FROM base AS fetch
COPY --from=stagex/busybox . /
COPY --from=stagex/go . /
COPY --from=stagex/ca-certificates . /
ADD --checksum=sha256:${SRC_HASH} ${SRC_SITE} .
RUN tar -xvf ${SRC_FILE}
WORKDIR helm-${VERSION}
RUN go get ./...
2024-08-08 07:47:42 +00:00
FROM fetch AS build
RUN --network=none go build -v -trimpath ./cmd/helm
2024-08-08 07:50:50 +00:00
FROM build AS install
RUN <<-EOF
2024-04-11 20:09:20 +00:00
set -eu
mkdir -p /rootfs/usr/bin/
cp helm /rootfs/usr/bin/
EOF
2024-08-08 07:47:42 +00:00
FROM stagex/filesystem AS package
COPY --from=install /rootfs/./ /