stagex/packages/sxctl/Containerfile

24 lines
592 B
Text
Raw Normal View History

2024-02-13 03:33:08 +00:00
FROM scratch as base
ENV VERSION=0.0.5
2024-02-13 03:33:08 +00:00
ENV SRC_FILE=v${VERSION}.tar.gz
ENV SRC_SITE=https://codeberg.org/stagex/sxctl/archive/${SRC_FILE}
ENV SRC_HASH=26f0dd95e72b632036c598d055ef6b78cec88c497dd67ede30d1498bb8229412
2024-02-13 03:33:08 +00:00
FROM base as fetch
ADD --checksum=sha256:${SRC_HASH} ${SRC_SITE} .
FROM fetch as build
COPY --from=stagex/busybox . /
COPY --from=stagex/go . /
2024-02-13 03:33:08 +00:00
RUN tar -xf ${SRC_FILE}
WORKDIR sxctl/cmd/sxctl
2024-02-15 03:58:54 +00:00
RUN go build -o sxctl
FROM build as install
WORKDIR /rootfs
RUN cp /sxctl/cmd/sxctl/sxctl .
2024-02-13 03:33:08 +00:00
FROM stagex/filesystem as package
COPY --from=install /rootfs/. /
2024-02-15 03:58:54 +00:00
ENTRYPOINT ["/sxctl"]