Release 20241229.0.293060

This commit is contained in:
GITLAB_PROJECT_TOKEN 2024-12-29 00:07:35 +00:00
parent ed14816036
commit fd757a8bfb
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/20241228.0.292877/base-20241228.0.292877.tar.zst" && \
echo "79b38d5b13547fa20f12da412e107d9fd15e785acf2b14db9ce292f73254bb25 base-20241228.0.292877.tar.zst" > /tmp/sha256sums.txt && \
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20241229.0.293060/base-20241229.0.293060.tar.zst" && \
echo "962e1401b17073c62d1c157778050532fba519625ebd26fc29cc772d99d8f23c base-20241229.0.293060.tar.zst" > /tmp/sha256sums.txt && \
sha256sum -c /tmp/sha256sums.txt && \
mkdir /rootfs && \
tar -C /rootfs --extract --file base-20241228.0.292877.tar.zst
tar -C /rootfs --extract --file base-20241229.0.293060.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="20241228.0.292877"
LABEL org.opencontainers.image.version="20241229.0.293060"
LABEL org.opencontainers.image.revision="61cb892bfc251e46f73e716ceb3b903ec4e9e725"
LABEL org.opencontainers.image.created="2024-12-28T09:07:24+00:00"
LABEL org.opencontainers.image.created="2024-12-29T00:07:35+00:00"
COPY --from=verify /rootfs/ /
RUN ldconfig && \
sed -i '/BUILD_ID/a VERSION_ID=20241228.0.292877' /etc/os-release
sed -i '/BUILD_ID/a VERSION_ID=20241229.0.293060' /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/20241228.0.292877/base-devel-20241228.0.292877.tar.zst" && \
echo "1e0f696fcd4c01c5d29b1cd32fb0600987791daa741af8711eac11a20282c84f base-devel-20241228.0.292877.tar.zst" > /tmp/sha256sums.txt && \
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20241229.0.293060/base-devel-20241229.0.293060.tar.zst" && \
echo "7efb21d9d7d8da283aeda9e45a5edfbd6c5f64428e99eaa5671fa2d953ff5472 base-devel-20241229.0.293060.tar.zst" > /tmp/sha256sums.txt && \
sha256sum -c /tmp/sha256sums.txt && \
mkdir /rootfs && \
tar -C /rootfs --extract --file base-devel-20241228.0.292877.tar.zst
tar -C /rootfs --extract --file base-devel-20241229.0.293060.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="20241228.0.292877"
LABEL org.opencontainers.image.version="20241229.0.293060"
LABEL org.opencontainers.image.revision="61cb892bfc251e46f73e716ceb3b903ec4e9e725"
LABEL org.opencontainers.image.created="2024-12-28T09:07:24+00:00"
LABEL org.opencontainers.image.created="2024-12-29T00:07:35+00:00"
COPY --from=verify /rootfs/ /
RUN ldconfig && \
sed -i '/BUILD_ID/a VERSION_ID=20241228.0.292877' /etc/os-release
sed -i '/BUILD_ID/a VERSION_ID=20241229.0.293060' /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/20241228.0.292877/multilib-devel-20241228.0.292877.tar.zst" && \
echo "4a87d28c0c0939667d86f4eb93529e5d7cc74c3518762b5c3b6d06cd8553ad11 multilib-devel-20241228.0.292877.tar.zst" > /tmp/sha256sums.txt && \
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20241229.0.293060/multilib-devel-20241229.0.293060.tar.zst" && \
echo "d13810cc863a382110f83734dc64a10a1197e6c17644e48bfdb6fd6bb563077f multilib-devel-20241229.0.293060.tar.zst" > /tmp/sha256sums.txt && \
sha256sum -c /tmp/sha256sums.txt && \
mkdir /rootfs && \
tar -C /rootfs --extract --file multilib-devel-20241228.0.292877.tar.zst
tar -C /rootfs --extract --file multilib-devel-20241229.0.293060.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="20241228.0.292877"
LABEL org.opencontainers.image.version="20241229.0.293060"
LABEL org.opencontainers.image.revision="61cb892bfc251e46f73e716ceb3b903ec4e9e725"
LABEL org.opencontainers.image.created="2024-12-28T09:07:24+00:00"
LABEL org.opencontainers.image.created="2024-12-29T00:07:35+00:00"
COPY --from=verify /rootfs/ /
RUN ldconfig && \
sed -i '/BUILD_ID/a VERSION_ID=20241228.0.292877' /etc/os-release
sed -i '/BUILD_ID/a VERSION_ID=20241229.0.293060' /etc/os-release
ENV LANG=C.UTF-8
CMD ["/usr/bin/bash"]