Release 20240723.0.248940

This commit is contained in:
GITLAB_PROJECT_TOKEN 2024-07-23 09:07:38 +00:00
parent 6e2f237577
commit e272cfb1d4
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/20240722.0.248757/base-20240722.0.248757.tar.zst" && \
echo "80b8e8519d3a34eb9f507c237cbefe705792fc61dcf3b51426614061e390e846 base-20240722.0.248757.tar.zst" > /tmp/sha256sums.txt && \
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20240723.0.248940/base-20240723.0.248940.tar.zst" && \
echo "e2ca9592d8a58e1479161bd7cf05c0c07684a4f77bbe778afb7bba321329d1df base-20240723.0.248940.tar.zst" > /tmp/sha256sums.txt && \
sha256sum -c /tmp/sha256sums.txt && \
mkdir /rootfs && \
tar -C /rootfs --extract --file base-20240722.0.248757.tar.zst
tar -C /rootfs --extract --file base-20240723.0.248940.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="20240722.0.248757"
LABEL org.opencontainers.image.version="20240723.0.248940"
LABEL org.opencontainers.image.revision="61cb892bfc251e46f73e716ceb3b903ec4e9e725"
LABEL org.opencontainers.image.created="2024-07-22T09:07:30+00:00"
LABEL org.opencontainers.image.created="2024-07-23T09:07:37+00:00"
COPY --from=verify /rootfs/ /
RUN ldconfig && \
sed -i '/BUILD_ID/a VERSION_ID=20240722.0.248757' /etc/os-release
sed -i '/BUILD_ID/a VERSION_ID=20240723.0.248940' /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/20240722.0.248757/base-devel-20240722.0.248757.tar.zst" && \
echo "474b528bae674e117678aae80817feda7825d427c1f2735a32b78663f129d872 base-devel-20240722.0.248757.tar.zst" > /tmp/sha256sums.txt && \
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20240723.0.248940/base-devel-20240723.0.248940.tar.zst" && \
echo "bd97a8f25b5f8ae49df6660b416c29be3e93753600cf05c3afa07575dbe7e91d base-devel-20240723.0.248940.tar.zst" > /tmp/sha256sums.txt && \
sha256sum -c /tmp/sha256sums.txt && \
mkdir /rootfs && \
tar -C /rootfs --extract --file base-devel-20240722.0.248757.tar.zst
tar -C /rootfs --extract --file base-devel-20240723.0.248940.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="20240722.0.248757"
LABEL org.opencontainers.image.version="20240723.0.248940"
LABEL org.opencontainers.image.revision="61cb892bfc251e46f73e716ceb3b903ec4e9e725"
LABEL org.opencontainers.image.created="2024-07-22T09:07:30+00:00"
LABEL org.opencontainers.image.created="2024-07-23T09:07:37+00:00"
COPY --from=verify /rootfs/ /
RUN ldconfig && \
sed -i '/BUILD_ID/a VERSION_ID=20240722.0.248757' /etc/os-release
sed -i '/BUILD_ID/a VERSION_ID=20240723.0.248940' /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/20240722.0.248757/multilib-devel-20240722.0.248757.tar.zst" && \
echo "70aaed30333d7222353288c11b3e26e60b90928bb3f3f4e3f1fa08a58fb62831 multilib-devel-20240722.0.248757.tar.zst" > /tmp/sha256sums.txt && \
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20240723.0.248940/multilib-devel-20240723.0.248940.tar.zst" && \
echo "0791ab123cbd10451f8f3e87d9aa5e6e2463cabefb07ca327a126bab197e1592 multilib-devel-20240723.0.248940.tar.zst" > /tmp/sha256sums.txt && \
sha256sum -c /tmp/sha256sums.txt && \
mkdir /rootfs && \
tar -C /rootfs --extract --file multilib-devel-20240722.0.248757.tar.zst
tar -C /rootfs --extract --file multilib-devel-20240723.0.248940.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="20240722.0.248757"
LABEL org.opencontainers.image.version="20240723.0.248940"
LABEL org.opencontainers.image.revision="61cb892bfc251e46f73e716ceb3b903ec4e9e725"
LABEL org.opencontainers.image.created="2024-07-22T09:07:30+00:00"
LABEL org.opencontainers.image.created="2024-07-23T09:07:38+00:00"
COPY --from=verify /rootfs/ /
RUN ldconfig && \
sed -i '/BUILD_ID/a VERSION_ID=20240722.0.248757' /etc/os-release
sed -i '/BUILD_ID/a VERSION_ID=20240723.0.248940' /etc/os-release
ENV LANG=C.UTF-8
CMD ["/usr/bin/bash"]