FROM scratch as base ENV VERSION=0.0.4 ENV SRC_FILE=v${VERSION}.tar.gz ENV SRC_SITE=https://codeberg.org/stagex/sxctl/archive/${SRC_FILE} ENV SRC_HASH=ea911883d193688cbb32d7106fb20f159536f9f98350e67d73a9e24df795b8c8 FROM base as fetch ADD --checksum=sha256:${SRC_HASH} ${SRC_SITE} . FROM fetch as build COPY --from=stagex/busybox . / COPY --from=stagex/go . / RUN tar -xf ${SRC_FILE} WORKDIR sxctl/cmd/sxctl RUN go build -o sxctl FROM build as install WORKDIR /rootfs RUN cp /sxctl/cmd/sxctl/sxctl . RUN find /rootfs -exec touch -hcd "@0" "{}" + FROM stagex/filesystem as package COPY --from=install /rootfs/. / ENTRYPOINT ["/sxctl"]