Release 20241220.0.290726

This commit is contained in:
GITLAB_PROJECT_TOKEN 2024-12-20 09:07:43 +00:00
parent 1ecf3dcd31
commit db7355c627
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/20241219.0.290487/base-20241219.0.290487.tar.zst" && \
echo "9db1d8e1d51a9a7b30f92f7aa72acd1fa004c9089303844e54a9d2a09b6bd28d base-20241219.0.290487.tar.zst" > /tmp/sha256sums.txt && \
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20241220.0.290726/base-20241220.0.290726.tar.zst" && \
echo "049989321fbff5a70ebf6306c3408450fdc7f39f25701f9d4df472f45cb3b980 base-20241220.0.290726.tar.zst" > /tmp/sha256sums.txt && \
sha256sum -c /tmp/sha256sums.txt && \
mkdir /rootfs && \
tar -C /rootfs --extract --file base-20241219.0.290487.tar.zst
tar -C /rootfs --extract --file base-20241220.0.290726.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="20241219.0.290487"
LABEL org.opencontainers.image.version="20241220.0.290726"
LABEL org.opencontainers.image.revision="61cb892bfc251e46f73e716ceb3b903ec4e9e725"
LABEL org.opencontainers.image.created="2024-12-19T09:07:21+00:00"
LABEL org.opencontainers.image.created="2024-12-20T09:07:43+00:00"
COPY --from=verify /rootfs/ /
RUN ldconfig && \
sed -i '/BUILD_ID/a VERSION_ID=20241219.0.290487' /etc/os-release
sed -i '/BUILD_ID/a VERSION_ID=20241220.0.290726' /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/20241219.0.290487/base-devel-20241219.0.290487.tar.zst" && \
echo "4a2f2a2706e2a88cd20919f2626750407830196549514bce0f8e358e8332b79f base-devel-20241219.0.290487.tar.zst" > /tmp/sha256sums.txt && \
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20241220.0.290726/base-devel-20241220.0.290726.tar.zst" && \
echo "d7001e46ee5f84fd387991cc91f52ca4301bf617ce536158f963e4909720682a base-devel-20241220.0.290726.tar.zst" > /tmp/sha256sums.txt && \
sha256sum -c /tmp/sha256sums.txt && \
mkdir /rootfs && \
tar -C /rootfs --extract --file base-devel-20241219.0.290487.tar.zst
tar -C /rootfs --extract --file base-devel-20241220.0.290726.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="20241219.0.290487"
LABEL org.opencontainers.image.version="20241220.0.290726"
LABEL org.opencontainers.image.revision="61cb892bfc251e46f73e716ceb3b903ec4e9e725"
LABEL org.opencontainers.image.created="2024-12-19T09:07:21+00:00"
LABEL org.opencontainers.image.created="2024-12-20T09:07:43+00:00"
COPY --from=verify /rootfs/ /
RUN ldconfig && \
sed -i '/BUILD_ID/a VERSION_ID=20241219.0.290487' /etc/os-release
sed -i '/BUILD_ID/a VERSION_ID=20241220.0.290726' /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/20241219.0.290487/multilib-devel-20241219.0.290487.tar.zst" && \
echo "26911e017c4587b63c4d959488a4d1d7066574da65eb77daa1e19268dfe46675 multilib-devel-20241219.0.290487.tar.zst" > /tmp/sha256sums.txt && \
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20241220.0.290726/multilib-devel-20241220.0.290726.tar.zst" && \
echo "a5aa88fb0f7ace8e30dffc78a3542ad416c9aec3b121fe726a504c3b85bc73ea multilib-devel-20241220.0.290726.tar.zst" > /tmp/sha256sums.txt && \
sha256sum -c /tmp/sha256sums.txt && \
mkdir /rootfs && \
tar -C /rootfs --extract --file multilib-devel-20241219.0.290487.tar.zst
tar -C /rootfs --extract --file multilib-devel-20241220.0.290726.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="20241219.0.290487"
LABEL org.opencontainers.image.version="20241220.0.290726"
LABEL org.opencontainers.image.revision="61cb892bfc251e46f73e716ceb3b903ec4e9e725"
LABEL org.opencontainers.image.created="2024-12-19T09:07:21+00:00"
LABEL org.opencontainers.image.created="2024-12-20T09:07:43+00:00"
COPY --from=verify /rootfs/ /
RUN ldconfig && \
sed -i '/BUILD_ID/a VERSION_ID=20241219.0.290487' /etc/os-release
sed -i '/BUILD_ID/a VERSION_ID=20241220.0.290726' /etc/os-release
ENV LANG=C.UTF-8
CMD ["/usr/bin/bash"]