stagex/packages/gpg/Containerfile

62 lines
1.6 KiB
Text
Raw Normal View History

2024-02-12 02:47:17 +00:00
FROM scratch as base
ENV VERSION=2.4.4
2024-02-12 02:47:17 +00:00
ENV SRC_HASH=67ebe016ca90fa7688ce67a387ebd82c6261e95897db7b23df24ff335be85bc6
ENV SRC_FILE=gnupg-${VERSION}.tar.bz2
2024-02-12 02:47:17 +00:00
ENV SRC_SITE=https://gnupg.org/ftp/gcrypt/gnupg/${SRC_FILE}
FROM base as fetch
ADD --checksum=sha256:${SRC_HASH} ${SRC_SITE} ${SRC_FILE}
FROM fetch as build
COPY --from=stagex/busybox . /
COPY --from=stagex/musl . /
COPY --from=stagex/gcc . /
COPY --from=stagex/binutils . /
COPY --from=stagex/make . /
COPY --from=stagex/npth . /
COPY --from=stagex/libksba . /
COPY --from=stagex/libgpg-error . /
COPY --from=stagex/libassuan . /
COPY --from=stagex/libgcrypt . /
2024-02-12 02:47:17 +00:00
RUN tar -xvf $SRC_FILE
WORKDIR gnupg-${VERSION}
2024-02-12 02:47:17 +00:00
RUN --network=none <<-EOF
set -eux
./configure \
--build=x86_64-unknown-linux-musl \
--host=x86_64-unknown-linux-musl \
--prefix=/usr \
--bindir=/bin \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
make
EOF
FROM build as install
RUN make DESTDIR=/rootfs install
2024-02-15 04:03:57 +00:00
RUN find /rootfs -exec touch -hcd "@0" "{}" +
2024-02-12 02:47:17 +00:00
FROM base as test
COPY --from=install /rootfs /
COPY --from=stagex/zlib . /
COPY --from=stagex/musl . /
COPY --from=stagex/busybox . /
COPY --from=stagex/npth . /
COPY --from=stagex/libksba . /
COPY --from=stagex/libgpg-error . /
COPY --from=stagex/libassuan . /
COPY --from=stagex/libgcrypt . /
2024-02-12 02:47:17 +00:00
RUN /bin/sh <<-EOF
set -eux
EXPECTED_GPG_VERSION="gpg version ${VERSION}"
2024-02-12 02:47:17 +00:00
GPG_VERSION=\$(gpg --version)
if [ "\$GPG_VERSION" != "\$EXPECTED_GPG_VERSION" ]; then
echo "Expected gpg version is \$EXPECTED_GPG_VERSION, but got \$GPG_VERSION"
exit 1
fi
EOF
FROM scratch as package
2024-02-15 04:03:57 +00:00
COPY --from=install /rootfs /