stagex/packages/talosctl/Containerfile

36 lines
908 B
Text
Raw Normal View History

2024-08-08 07:47:42 +00:00
FROM scratch AS base
2024-05-24 23:57:42 +00:00
ENV VERSION=1.7.2
ENV SRC_HASH=7f16510394ebe12cd405bc9d2cf4c6ef2c8baf6213006d52c05dcbce0bf06100
ENV SRC_FILE=v${VERSION}.tar.gz
ENV SRC_SITE=https://github.com/siderolabs/talos/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 talos-${VERSION}
RUN go get ./...
2024-08-08 07:47:42 +00:00
FROM fetch AS build
RUN --network=none go build -v -trimpath ./cmd/talosctl
2024-08-08 07:50:50 +00:00
FROM build AS install
RUN <<-EOF
mkdir -p /rootfs/usr/bin/
cp talosctl /rootfs/usr/bin/
EOF
2024-08-08 07:47:42 +00:00
FROM stagex/filesystem AS package
COPY --from=install /rootfs/./ /