Release 20241214.0.289016

This commit is contained in:
GITLAB_PROJECT_TOKEN 2024-12-14 09:07:34 +00:00
parent 5a2673ff8e
commit b81d8052d6
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/20241213.0.288711/base-20241213.0.288711.tar.zst" && \
echo "c4ccddcdb452c9c72f53de30c9902153791e13d260c94cc89ba7dae23a172f7f base-20241213.0.288711.tar.zst" > /tmp/sha256sums.txt && \
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20241214.0.289016/base-20241214.0.289016.tar.zst" && \
echo "777ce0615537c177b3ad68263000fde952df2b50ec96e801f3daa144547a2174 base-20241214.0.289016.tar.zst" > /tmp/sha256sums.txt && \
sha256sum -c /tmp/sha256sums.txt && \
mkdir /rootfs && \
tar -C /rootfs --extract --file base-20241213.0.288711.tar.zst
tar -C /rootfs --extract --file base-20241214.0.289016.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="20241213.0.288711"
LABEL org.opencontainers.image.version="20241214.0.289016"
LABEL org.opencontainers.image.revision="61cb892bfc251e46f73e716ceb3b903ec4e9e725"
LABEL org.opencontainers.image.created="2024-12-13T09:07:43+00:00"
LABEL org.opencontainers.image.created="2024-12-14T09:07:34+00:00"
COPY --from=verify /rootfs/ /
RUN ldconfig && \
sed -i '/BUILD_ID/a VERSION_ID=20241213.0.288711' /etc/os-release
sed -i '/BUILD_ID/a VERSION_ID=20241214.0.289016' /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/20241213.0.288711/base-devel-20241213.0.288711.tar.zst" && \
echo "5602bea50cdf3040c072386876fd66ff80d672df559ba67515caed3140db5cac base-devel-20241213.0.288711.tar.zst" > /tmp/sha256sums.txt && \
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20241214.0.289016/base-devel-20241214.0.289016.tar.zst" && \
echo "6d65a94f9a671612b264fe29963a669f86c4c4a15bf691471e41d957bfcd9be6 base-devel-20241214.0.289016.tar.zst" > /tmp/sha256sums.txt && \
sha256sum -c /tmp/sha256sums.txt && \
mkdir /rootfs && \
tar -C /rootfs --extract --file base-devel-20241213.0.288711.tar.zst
tar -C /rootfs --extract --file base-devel-20241214.0.289016.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="20241213.0.288711"
LABEL org.opencontainers.image.version="20241214.0.289016"
LABEL org.opencontainers.image.revision="61cb892bfc251e46f73e716ceb3b903ec4e9e725"
LABEL org.opencontainers.image.created="2024-12-13T09:07:43+00:00"
LABEL org.opencontainers.image.created="2024-12-14T09:07:34+00:00"
COPY --from=verify /rootfs/ /
RUN ldconfig && \
sed -i '/BUILD_ID/a VERSION_ID=20241213.0.288711' /etc/os-release
sed -i '/BUILD_ID/a VERSION_ID=20241214.0.289016' /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/20241213.0.288711/multilib-devel-20241213.0.288711.tar.zst" && \
echo "6f28dce4fc5d7cb1a13fbcb7097e1b7b5411d8e54d2b5c851439fafa87560e21 multilib-devel-20241213.0.288711.tar.zst" > /tmp/sha256sums.txt && \
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20241214.0.289016/multilib-devel-20241214.0.289016.tar.zst" && \
echo "aee40409bb054c519047bce3435885ef97bdfa2e9c5e312fa4319dfb1dc2d79b multilib-devel-20241214.0.289016.tar.zst" > /tmp/sha256sums.txt && \
sha256sum -c /tmp/sha256sums.txt && \
mkdir /rootfs && \
tar -C /rootfs --extract --file multilib-devel-20241213.0.288711.tar.zst
tar -C /rootfs --extract --file multilib-devel-20241214.0.289016.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="20241213.0.288711"
LABEL org.opencontainers.image.version="20241214.0.289016"
LABEL org.opencontainers.image.revision="61cb892bfc251e46f73e716ceb3b903ec4e9e725"
LABEL org.opencontainers.image.created="2024-12-13T09:07:43+00:00"
LABEL org.opencontainers.image.created="2024-12-14T09:07:34+00:00"
COPY --from=verify /rootfs/ /
RUN ldconfig && \
sed -i '/BUILD_ID/a VERSION_ID=20241213.0.288711' /etc/os-release
sed -i '/BUILD_ID/a VERSION_ID=20241214.0.289016' /etc/os-release
ENV LANG=C.UTF-8
CMD ["/usr/bin/bash"]