Release 20241216.0.289606

This commit is contained in:
GITLAB_PROJECT_TOKEN 2024-12-16 09:07:19 +00:00
parent 03ec4f2640
commit 7d09f56b69
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/20241215.0.289275/base-20241215.0.289275.tar.zst" && \
echo "01fb420bed7776bed7ff330d7ce16bd4d389ffb0b0f63730ec6ef32ed2464730 base-20241215.0.289275.tar.zst" > /tmp/sha256sums.txt && \
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20241216.0.289606/base-20241216.0.289606.tar.zst" && \
echo "00d1142e78a0dcc5c61503873edde32a221430a65a00c5e6cea81bcdc6d09083 base-20241216.0.289606.tar.zst" > /tmp/sha256sums.txt && \
sha256sum -c /tmp/sha256sums.txt && \
mkdir /rootfs && \
tar -C /rootfs --extract --file base-20241215.0.289275.tar.zst
tar -C /rootfs --extract --file base-20241216.0.289606.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="20241215.0.289275"
LABEL org.opencontainers.image.version="20241216.0.289606"
LABEL org.opencontainers.image.revision="61cb892bfc251e46f73e716ceb3b903ec4e9e725"
LABEL org.opencontainers.image.created="2024-12-15T09:07:32+00:00"
LABEL org.opencontainers.image.created="2024-12-16T09:07:19+00:00"
COPY --from=verify /rootfs/ /
RUN ldconfig && \
sed -i '/BUILD_ID/a VERSION_ID=20241215.0.289275' /etc/os-release
sed -i '/BUILD_ID/a VERSION_ID=20241216.0.289606' /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/20241215.0.289275/base-devel-20241215.0.289275.tar.zst" && \
echo "871d651724dc0cd71d1a7365eada63404d631b56eb21d6603f1203049aef887c base-devel-20241215.0.289275.tar.zst" > /tmp/sha256sums.txt && \
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20241216.0.289606/base-devel-20241216.0.289606.tar.zst" && \
echo "99974cf805c4e0f61e6ea8e893543df2229529db55b1e19fd51f53eeea4a3530 base-devel-20241216.0.289606.tar.zst" > /tmp/sha256sums.txt && \
sha256sum -c /tmp/sha256sums.txt && \
mkdir /rootfs && \
tar -C /rootfs --extract --file base-devel-20241215.0.289275.tar.zst
tar -C /rootfs --extract --file base-devel-20241216.0.289606.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="20241215.0.289275"
LABEL org.opencontainers.image.version="20241216.0.289606"
LABEL org.opencontainers.image.revision="61cb892bfc251e46f73e716ceb3b903ec4e9e725"
LABEL org.opencontainers.image.created="2024-12-15T09:07:32+00:00"
LABEL org.opencontainers.image.created="2024-12-16T09:07:19+00:00"
COPY --from=verify /rootfs/ /
RUN ldconfig && \
sed -i '/BUILD_ID/a VERSION_ID=20241215.0.289275' /etc/os-release
sed -i '/BUILD_ID/a VERSION_ID=20241216.0.289606' /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/20241215.0.289275/multilib-devel-20241215.0.289275.tar.zst" && \
echo "8edd83461f75aeefa62d1b7e75402c12d3b0ba8b6a9ad765575f592fe5dc76a4 multilib-devel-20241215.0.289275.tar.zst" > /tmp/sha256sums.txt && \
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20241216.0.289606/multilib-devel-20241216.0.289606.tar.zst" && \
echo "32a75a638ca8fd74eae1e9ba25339523db3f3098e990ccfcb4461226556517ba multilib-devel-20241216.0.289606.tar.zst" > /tmp/sha256sums.txt && \
sha256sum -c /tmp/sha256sums.txt && \
mkdir /rootfs && \
tar -C /rootfs --extract --file multilib-devel-20241215.0.289275.tar.zst
tar -C /rootfs --extract --file multilib-devel-20241216.0.289606.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="20241215.0.289275"
LABEL org.opencontainers.image.version="20241216.0.289606"
LABEL org.opencontainers.image.revision="61cb892bfc251e46f73e716ceb3b903ec4e9e725"
LABEL org.opencontainers.image.created="2024-12-15T09:07:32+00:00"
LABEL org.opencontainers.image.created="2024-12-16T09:07:19+00:00"
COPY --from=verify /rootfs/ /
RUN ldconfig && \
sed -i '/BUILD_ID/a VERSION_ID=20241215.0.289275' /etc/os-release
sed -i '/BUILD_ID/a VERSION_ID=20241216.0.289606' /etc/os-release
ENV LANG=C.UTF-8
CMD ["/usr/bin/bash"]