Release 20241222.0.291122

This commit is contained in:
GITLAB_PROJECT_TOKEN 2024-12-22 00:07:56 +00:00
parent 9a9a80c904
commit 4cacbe0820
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/20241221.0.290952/base-20241221.0.290952.tar.zst" && \
echo "67670296d14184ffbd45e906961327bf9241443d22e94a62aac4c5011e811e91 base-20241221.0.290952.tar.zst" > /tmp/sha256sums.txt && \
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20241222.0.291122/base-20241222.0.291122.tar.zst" && \
echo "472126c6f7ba656f9f979b9b6a55eb447411643fa31a1ca68a1690cc36632204 base-20241222.0.291122.tar.zst" > /tmp/sha256sums.txt && \
sha256sum -c /tmp/sha256sums.txt && \
mkdir /rootfs && \
tar -C /rootfs --extract --file base-20241221.0.290952.tar.zst
tar -C /rootfs --extract --file base-20241222.0.291122.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="20241221.0.290952"
LABEL org.opencontainers.image.version="20241222.0.291122"
LABEL org.opencontainers.image.revision="61cb892bfc251e46f73e716ceb3b903ec4e9e725"
LABEL org.opencontainers.image.created="2024-12-21T09:07:42+00:00"
LABEL org.opencontainers.image.created="2024-12-22T00:07:56+00:00"
COPY --from=verify /rootfs/ /
RUN ldconfig && \
sed -i '/BUILD_ID/a VERSION_ID=20241221.0.290952' /etc/os-release
sed -i '/BUILD_ID/a VERSION_ID=20241222.0.291122' /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/20241221.0.290952/base-devel-20241221.0.290952.tar.zst" && \
echo "4a02d4915a0a214d3cbac2ba73a493fc251ea0ac1f20c1c24a86b3aa8d267e72 base-devel-20241221.0.290952.tar.zst" > /tmp/sha256sums.txt && \
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20241222.0.291122/base-devel-20241222.0.291122.tar.zst" && \
echo "76e8b64339fcbdb7ecb84fb336a1802f00c362147767199d125b8a3c686a7f7c base-devel-20241222.0.291122.tar.zst" > /tmp/sha256sums.txt && \
sha256sum -c /tmp/sha256sums.txt && \
mkdir /rootfs && \
tar -C /rootfs --extract --file base-devel-20241221.0.290952.tar.zst
tar -C /rootfs --extract --file base-devel-20241222.0.291122.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="20241221.0.290952"
LABEL org.opencontainers.image.version="20241222.0.291122"
LABEL org.opencontainers.image.revision="61cb892bfc251e46f73e716ceb3b903ec4e9e725"
LABEL org.opencontainers.image.created="2024-12-21T09:07:42+00:00"
LABEL org.opencontainers.image.created="2024-12-22T00:07:56+00:00"
COPY --from=verify /rootfs/ /
RUN ldconfig && \
sed -i '/BUILD_ID/a VERSION_ID=20241221.0.290952' /etc/os-release
sed -i '/BUILD_ID/a VERSION_ID=20241222.0.291122' /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/20241221.0.290952/multilib-devel-20241221.0.290952.tar.zst" && \
echo "621e497d5bae9be357eb85b93b29452eea24c61672df91e73ec657ed942ba27f multilib-devel-20241221.0.290952.tar.zst" > /tmp/sha256sums.txt && \
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20241222.0.291122/multilib-devel-20241222.0.291122.tar.zst" && \
echo "186b9ee670b714afa95cd7c4cae6d1f95c5ea17e304bdea65ddaffd92a0ac9e6 multilib-devel-20241222.0.291122.tar.zst" > /tmp/sha256sums.txt && \
sha256sum -c /tmp/sha256sums.txt && \
mkdir /rootfs && \
tar -C /rootfs --extract --file multilib-devel-20241221.0.290952.tar.zst
tar -C /rootfs --extract --file multilib-devel-20241222.0.291122.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="20241221.0.290952"
LABEL org.opencontainers.image.version="20241222.0.291122"
LABEL org.opencontainers.image.revision="61cb892bfc251e46f73e716ceb3b903ec4e9e725"
LABEL org.opencontainers.image.created="2024-12-21T09:07:42+00:00"
LABEL org.opencontainers.image.created="2024-12-22T00:07:56+00:00"
COPY --from=verify /rootfs/ /
RUN ldconfig && \
sed -i '/BUILD_ID/a VERSION_ID=20241221.0.290952' /etc/os-release
sed -i '/BUILD_ID/a VERSION_ID=20241222.0.291122' /etc/os-release
ENV LANG=C.UTF-8
CMD ["/usr/bin/bash"]