Release 20240622.0.242745

This commit is contained in:
GITLAB_PROJECT_TOKEN 2024-06-22 09:07:42 +00:00
parent f02ce71565
commit 52121c3cc9
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/20240621.0.242619/base-20240621.0.242619.tar.zst" && \
echo "4f64c2024dfe8204aca3d8ebe076101be5cf808a31dcff03594c81de7b798cff base-20240621.0.242619.tar.zst" > /tmp/sha256sums.txt && \
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20240622.0.242745/base-20240622.0.242745.tar.zst" && \
echo "7dea4aec644817db4275153874a68ad7b6ed8a592cf47084e9fd0fa336bcd89b base-20240622.0.242745.tar.zst" > /tmp/sha256sums.txt && \
sha256sum -c /tmp/sha256sums.txt && \
mkdir /rootfs && \
tar -C /rootfs --extract --file base-20240621.0.242619.tar.zst
tar -C /rootfs --extract --file base-20240622.0.242745.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="20240621.0.242619"
LABEL org.opencontainers.image.version="20240622.0.242745"
LABEL org.opencontainers.image.revision="bd60189bf8f3c09a995e2b2891660667955808ff"
LABEL org.opencontainers.image.created="2024-06-21T09:07:26+00:00"
LABEL org.opencontainers.image.created="2024-06-22T09:07:42+00:00"
COPY --from=verify /rootfs/ /
RUN ldconfig && \
sed -i '/BUILD_ID/a VERSION_ID=20240621.0.242619' /etc/os-release
sed -i '/BUILD_ID/a VERSION_ID=20240622.0.242745' /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/20240621.0.242619/base-devel-20240621.0.242619.tar.zst" && \
echo "dbf6ab9cf34d294c68d2f1f29fcabc6f20f365a76bb4c60f0c93a338ab79c71d base-devel-20240621.0.242619.tar.zst" > /tmp/sha256sums.txt && \
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20240622.0.242745/base-devel-20240622.0.242745.tar.zst" && \
echo "6e2e6fb969f69b0dd6df770179fa4d3c3b7b9e921cc700f510ce86af1348c11d base-devel-20240622.0.242745.tar.zst" > /tmp/sha256sums.txt && \
sha256sum -c /tmp/sha256sums.txt && \
mkdir /rootfs && \
tar -C /rootfs --extract --file base-devel-20240621.0.242619.tar.zst
tar -C /rootfs --extract --file base-devel-20240622.0.242745.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="20240621.0.242619"
LABEL org.opencontainers.image.version="20240622.0.242745"
LABEL org.opencontainers.image.revision="bd60189bf8f3c09a995e2b2891660667955808ff"
LABEL org.opencontainers.image.created="2024-06-21T09:07:26+00:00"
LABEL org.opencontainers.image.created="2024-06-22T09:07:42+00:00"
COPY --from=verify /rootfs/ /
RUN ldconfig && \
sed -i '/BUILD_ID/a VERSION_ID=20240621.0.242619' /etc/os-release
sed -i '/BUILD_ID/a VERSION_ID=20240622.0.242745' /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/20240621.0.242619/multilib-devel-20240621.0.242619.tar.zst" && \
echo "cc87120b53f8cc0eaa1ef876a10f5232d8f483916d412e59441c2d3192b4a24c multilib-devel-20240621.0.242619.tar.zst" > /tmp/sha256sums.txt && \
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20240622.0.242745/multilib-devel-20240622.0.242745.tar.zst" && \
echo "0e506f95cd54b682eb636275bc520ded1fafe60f314a056dff4a5df3db3c3076 multilib-devel-20240622.0.242745.tar.zst" > /tmp/sha256sums.txt && \
sha256sum -c /tmp/sha256sums.txt && \
mkdir /rootfs && \
tar -C /rootfs --extract --file multilib-devel-20240621.0.242619.tar.zst
tar -C /rootfs --extract --file multilib-devel-20240622.0.242745.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="20240621.0.242619"
LABEL org.opencontainers.image.version="20240622.0.242745"
LABEL org.opencontainers.image.revision="bd60189bf8f3c09a995e2b2891660667955808ff"
LABEL org.opencontainers.image.created="2024-06-21T09:07:26+00:00"
LABEL org.opencontainers.image.created="2024-06-22T09:07:42+00:00"
COPY --from=verify /rootfs/ /
RUN ldconfig && \
sed -i '/BUILD_ID/a VERSION_ID=20240621.0.242619' /etc/os-release
sed -i '/BUILD_ID/a VERSION_ID=20240622.0.242745' /etc/os-release
ENV LANG=C.UTF-8
CMD ["/usr/bin/bash"]