Release 20240831.0.259346

This commit is contained in:
GITLAB_PROJECT_TOKEN 2024-08-31 09:07:26 +00:00
parent ce2e34b920
commit e174e9e6b7
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/20240830.0.258997/base-20240830.0.258997.tar.zst" && \
echo "d8d0e61ac7e19bbe1ea00f96a748249b574c49ed53323ce0121248541e5f2f2c base-20240830.0.258997.tar.zst" > /tmp/sha256sums.txt && \
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20240831.0.259346/base-20240831.0.259346.tar.zst" && \
echo "fc292f6ef8861b38ced4c2880f78da954a8be21d50432b96b42a09760c26d556 base-20240831.0.259346.tar.zst" > /tmp/sha256sums.txt && \
sha256sum -c /tmp/sha256sums.txt && \
mkdir /rootfs && \
tar -C /rootfs --extract --file base-20240830.0.258997.tar.zst
tar -C /rootfs --extract --file base-20240831.0.259346.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="20240830.0.258997"
LABEL org.opencontainers.image.version="20240831.0.259346"
LABEL org.opencontainers.image.revision="61cb892bfc251e46f73e716ceb3b903ec4e9e725"
LABEL org.opencontainers.image.created="2024-08-30T09:08:03+00:00"
LABEL org.opencontainers.image.created="2024-08-31T09:07:26+00:00"
COPY --from=verify /rootfs/ /
RUN ldconfig && \
sed -i '/BUILD_ID/a VERSION_ID=20240830.0.258997' /etc/os-release
sed -i '/BUILD_ID/a VERSION_ID=20240831.0.259346' /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/20240830.0.258997/base-devel-20240830.0.258997.tar.zst" && \
echo "90993011a8fd70d7fb34867f2cbae949dd493a83325979a567f8739627198a3a base-devel-20240830.0.258997.tar.zst" > /tmp/sha256sums.txt && \
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20240831.0.259346/base-devel-20240831.0.259346.tar.zst" && \
echo "76e2f12cccd5f5922c142006ffb102feda63e091d947deeb396040abeadaab57 base-devel-20240831.0.259346.tar.zst" > /tmp/sha256sums.txt && \
sha256sum -c /tmp/sha256sums.txt && \
mkdir /rootfs && \
tar -C /rootfs --extract --file base-devel-20240830.0.258997.tar.zst
tar -C /rootfs --extract --file base-devel-20240831.0.259346.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="20240830.0.258997"
LABEL org.opencontainers.image.version="20240831.0.259346"
LABEL org.opencontainers.image.revision="61cb892bfc251e46f73e716ceb3b903ec4e9e725"
LABEL org.opencontainers.image.created="2024-08-30T09:08:03+00:00"
LABEL org.opencontainers.image.created="2024-08-31T09:07:26+00:00"
COPY --from=verify /rootfs/ /
RUN ldconfig && \
sed -i '/BUILD_ID/a VERSION_ID=20240830.0.258997' /etc/os-release
sed -i '/BUILD_ID/a VERSION_ID=20240831.0.259346' /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/20240830.0.258997/multilib-devel-20240830.0.258997.tar.zst" && \
echo "7de2f4746fc4155aa97f70556e25222e219ed22c41d84dda7f6bc4aa3c9740e8 multilib-devel-20240830.0.258997.tar.zst" > /tmp/sha256sums.txt && \
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20240831.0.259346/multilib-devel-20240831.0.259346.tar.zst" && \
echo "f8bf0a3b457fd57b597eb81c768f5186cd2e3a51946cb1f02b86a381238028b7 multilib-devel-20240831.0.259346.tar.zst" > /tmp/sha256sums.txt && \
sha256sum -c /tmp/sha256sums.txt && \
mkdir /rootfs && \
tar -C /rootfs --extract --file multilib-devel-20240830.0.258997.tar.zst
tar -C /rootfs --extract --file multilib-devel-20240831.0.259346.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="20240830.0.258997"
LABEL org.opencontainers.image.version="20240831.0.259346"
LABEL org.opencontainers.image.revision="61cb892bfc251e46f73e716ceb3b903ec4e9e725"
LABEL org.opencontainers.image.created="2024-08-30T09:08:03+00:00"
LABEL org.opencontainers.image.created="2024-08-31T09:07:26+00:00"
COPY --from=verify /rootfs/ /
RUN ldconfig && \
sed -i '/BUILD_ID/a VERSION_ID=20240830.0.258997' /etc/os-release
sed -i '/BUILD_ID/a VERSION_ID=20240831.0.259346' /etc/os-release
ENV LANG=C.UTF-8
CMD ["/usr/bin/bash"]