Release 20240925.0.265508

This commit is contained in:
GITLAB_PROJECT_TOKEN 2024-09-25 09:07:30 +00:00
parent e43c496660
commit 05d093722b
3 changed files with 18 additions and 18 deletions

View File

@ -14,11 +14,11 @@ FROM alpine:3.19 AS verify
RUN apk add --no-cache curl tar zstd
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20240924.0.265287/base-20240924.0.265287.tar.zst" && \
echo "71609cf247ea91d267c0191b69e6dc7da244c743c56d6f8b7f68ca05e6365d84 base-20240924.0.265287.tar.zst" > /tmp/sha256sums.txt && \
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20240925.0.265508/base-20240925.0.265508.tar.zst" && \
echo "4e8ad30327a19a67e9f71b578e1041d76542b91d0ae5356b125ebce7d0aa99a9 base-20240925.0.265508.tar.zst" > /tmp/sha256sums.txt && \
sha256sum -c /tmp/sha256sums.txt && \
mkdir /rootfs && \
tar -C /rootfs --extract --file base-20240924.0.265287.tar.zst
tar -C /rootfs --extract --file base-20240925.0.265508.tar.zst
FROM scratch AS root
@ -29,14 +29,14 @@ LABEL org.opencontainers.image.url="https://gitlab.archlinux.org/archlinux/archl
LABEL org.opencontainers.image.documentation="https://wiki.archlinux.org/title/Docker#Arch_Linux"
LABEL org.opencontainers.image.source="https://gitlab.archlinux.org/archlinux/archlinux-docker"
LABEL org.opencontainers.image.licenses="GPL-3.0-or-later"
LABEL org.opencontainers.image.version="20240924.0.265287"
LABEL org.opencontainers.image.version="20240925.0.265508"
LABEL org.opencontainers.image.revision="61cb892bfc251e46f73e716ceb3b903ec4e9e725"
LABEL org.opencontainers.image.created="2024-09-24T09:07:25+00:00"
LABEL org.opencontainers.image.created="2024-09-25T09:07:30+00:00"
COPY --from=verify /rootfs/ /
RUN ldconfig && \
sed -i '/BUILD_ID/a VERSION_ID=20240924.0.265287' /etc/os-release
sed -i '/BUILD_ID/a VERSION_ID=20240925.0.265508' /etc/os-release
ENV LANG=C.UTF-8
CMD ["/usr/bin/bash"]

View File

@ -14,11 +14,11 @@ FROM alpine:3.19 AS verify
RUN apk add --no-cache curl tar zstd
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20240924.0.265287/base-devel-20240924.0.265287.tar.zst" && \
echo "bb96184d7f8775313dd7e957d9b25429c419a7f71d16a4c811daee4d2eec44fd base-devel-20240924.0.265287.tar.zst" > /tmp/sha256sums.txt && \
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20240925.0.265508/base-devel-20240925.0.265508.tar.zst" && \
echo "db61bff0f10dc0496d924090617f081ef5e6cd3ebfe87415f680086ae59571db base-devel-20240925.0.265508.tar.zst" > /tmp/sha256sums.txt && \
sha256sum -c /tmp/sha256sums.txt && \
mkdir /rootfs && \
tar -C /rootfs --extract --file base-devel-20240924.0.265287.tar.zst
tar -C /rootfs --extract --file base-devel-20240925.0.265508.tar.zst
FROM scratch AS root
@ -29,14 +29,14 @@ LABEL org.opencontainers.image.url="https://gitlab.archlinux.org/archlinux/archl
LABEL org.opencontainers.image.documentation="https://wiki.archlinux.org/title/Docker#Arch_Linux"
LABEL org.opencontainers.image.source="https://gitlab.archlinux.org/archlinux/archlinux-docker"
LABEL org.opencontainers.image.licenses="GPL-3.0-or-later"
LABEL org.opencontainers.image.version="20240924.0.265287"
LABEL org.opencontainers.image.version="20240925.0.265508"
LABEL org.opencontainers.image.revision="61cb892bfc251e46f73e716ceb3b903ec4e9e725"
LABEL org.opencontainers.image.created="2024-09-24T09:07:25+00:00"
LABEL org.opencontainers.image.created="2024-09-25T09:07:30+00:00"
COPY --from=verify /rootfs/ /
RUN ldconfig && \
sed -i '/BUILD_ID/a VERSION_ID=20240924.0.265287' /etc/os-release
sed -i '/BUILD_ID/a VERSION_ID=20240925.0.265508' /etc/os-release
ENV LANG=C.UTF-8
CMD ["/usr/bin/bash"]

View File

@ -14,11 +14,11 @@ FROM alpine:3.19 AS verify
RUN apk add --no-cache curl tar zstd
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20240924.0.265287/multilib-devel-20240924.0.265287.tar.zst" && \
echo "a2fd595ad79a58f1b9ec7d329756ae48ac1da3969a91bd1fa29cf981a48f8215 multilib-devel-20240924.0.265287.tar.zst" > /tmp/sha256sums.txt && \
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20240925.0.265508/multilib-devel-20240925.0.265508.tar.zst" && \
echo "b02af820c2f04f075582a9b4ba4bf558213ca23e91430bb7740111bdca1f36bf multilib-devel-20240925.0.265508.tar.zst" > /tmp/sha256sums.txt && \
sha256sum -c /tmp/sha256sums.txt && \
mkdir /rootfs && \
tar -C /rootfs --extract --file multilib-devel-20240924.0.265287.tar.zst
tar -C /rootfs --extract --file multilib-devel-20240925.0.265508.tar.zst
FROM scratch AS root
@ -29,14 +29,14 @@ LABEL org.opencontainers.image.url="https://gitlab.archlinux.org/archlinux/archl
LABEL org.opencontainers.image.documentation="https://wiki.archlinux.org/title/Docker#Arch_Linux"
LABEL org.opencontainers.image.source="https://gitlab.archlinux.org/archlinux/archlinux-docker"
LABEL org.opencontainers.image.licenses="GPL-3.0-or-later"
LABEL org.opencontainers.image.version="20240924.0.265287"
LABEL org.opencontainers.image.version="20240925.0.265508"
LABEL org.opencontainers.image.revision="61cb892bfc251e46f73e716ceb3b903ec4e9e725"
LABEL org.opencontainers.image.created="2024-09-24T09:07:25+00:00"
LABEL org.opencontainers.image.created="2024-09-25T09:07:30+00:00"
COPY --from=verify /rootfs/ /
RUN ldconfig && \
sed -i '/BUILD_ID/a VERSION_ID=20240924.0.265287' /etc/os-release
sed -i '/BUILD_ID/a VERSION_ID=20240925.0.265508' /etc/os-release
ENV LANG=C.UTF-8
CMD ["/usr/bin/bash"]