mirror of
https://gitlab.archlinux.org/archlinux/archlinux-docker.git
synced 2026-05-08 15:26:15 +02:00
Release 20260429.0.522721
This commit is contained in:
parent
953aec88ef
commit
32d3d45f6d
@ -408,6 +408,7 @@ release:
|
||||
|
||||
# Publish to the official Docker namespace: https://hub.docker.com/_/archlinux
|
||||
# Note: The description is maintained here: https://github.com/docker-library/docs/tree/master/archlinux
|
||||
# This skips the `repro` tag since we're unable to adjust required build parameters on the docker-library side
|
||||
publish-dockerhub:
|
||||
stage: publish
|
||||
dependencies:
|
||||
@ -439,7 +440,7 @@ publish-dockerhub:
|
||||
- git checkout -b "$head"
|
||||
- cp ../docker-library.template library/archlinux
|
||||
- |
|
||||
for group in base base-devel multilib-devel repro; do
|
||||
for group in base base-devel multilib-devel; do
|
||||
test "${group}" = "base" && extra="latest, " || extra=""
|
||||
echo "Tags: ${extra}${group}, ${group}-${BUILD_VERSION}" >> library/archlinux
|
||||
echo "GitCommit: ${BUILD_COMMIT}" >> library/archlinux
|
||||
|
||||
@ -14,11 +14,11 @@ FROM alpine:3.23 AS verify
|
||||
|
||||
RUN apk add --no-cache curl tar zstd
|
||||
|
||||
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20260428.0.521691/base-20260428.0.521691.tar.zst" && \
|
||||
echo "0c15a640ae40596b0dcfeee03cf0ce4bd7c6195287ca9c564b7005fa9032b25f base-20260428.0.521691.tar.zst" > /tmp/sha256sums.txt && \
|
||||
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20260429.0.522721/base-20260429.0.522721.tar.zst" && \
|
||||
echo "e828004ed815469b7525f32b4b8c3035df700741bf245ba55930b0d21939ab74 base-20260429.0.522721.tar.zst" > /tmp/sha256sums.txt && \
|
||||
sha256sum -c /tmp/sha256sums.txt && \
|
||||
mkdir /rootfs && \
|
||||
tar -C /rootfs --extract --file base-20260428.0.521691.tar.zst
|
||||
tar -C /rootfs --extract --file base-20260429.0.522721.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="20260428.0.521691"
|
||||
LABEL org.opencontainers.image.revision="446b09aa44caac0c4372917b2da2a59943fc2eb6"
|
||||
LABEL org.opencontainers.image.created="2026-04-28T21:56:50+00:00"
|
||||
LABEL org.opencontainers.image.version="20260429.0.522721"
|
||||
LABEL org.opencontainers.image.revision="c4589ed396fac74cad155bee7ae8a458a7f22240"
|
||||
LABEL org.opencontainers.image.created="2026-04-29T14:48:40+00:00"
|
||||
|
||||
COPY --from=verify /rootfs/ /
|
||||
|
||||
RUN ldconfig && \
|
||||
sed -i '/BUILD_ID/a VERSION_ID=20260428.0.521691' /etc/os-release && \
|
||||
sed -i '/BUILD_ID/a VERSION_ID=20260429.0.522721' /etc/os-release && \
|
||||
true
|
||||
|
||||
ENV LANG=C.UTF-8
|
||||
|
||||
@ -14,11 +14,11 @@ FROM alpine:3.23 AS verify
|
||||
|
||||
RUN apk add --no-cache curl tar zstd
|
||||
|
||||
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20260428.0.521691/base-devel-20260428.0.521691.tar.zst" && \
|
||||
echo "510b983529ec1bfeebda5751f1f32f68f715520247a2ae3a5649034b7a5a04d2 base-devel-20260428.0.521691.tar.zst" > /tmp/sha256sums.txt && \
|
||||
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20260429.0.522721/base-devel-20260429.0.522721.tar.zst" && \
|
||||
echo "2685886d923279d12a056e71169547283a98fcd74bd27a67fd7362f73b9a31de base-devel-20260429.0.522721.tar.zst" > /tmp/sha256sums.txt && \
|
||||
sha256sum -c /tmp/sha256sums.txt && \
|
||||
mkdir /rootfs && \
|
||||
tar -C /rootfs --extract --file base-devel-20260428.0.521691.tar.zst
|
||||
tar -C /rootfs --extract --file base-devel-20260429.0.522721.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="20260428.0.521691"
|
||||
LABEL org.opencontainers.image.revision="446b09aa44caac0c4372917b2da2a59943fc2eb6"
|
||||
LABEL org.opencontainers.image.created="2026-04-28T21:56:50+00:00"
|
||||
LABEL org.opencontainers.image.version="20260429.0.522721"
|
||||
LABEL org.opencontainers.image.revision="c4589ed396fac74cad155bee7ae8a458a7f22240"
|
||||
LABEL org.opencontainers.image.created="2026-04-29T14:48:41+00:00"
|
||||
|
||||
COPY --from=verify /rootfs/ /
|
||||
|
||||
RUN ldconfig && \
|
||||
sed -i '/BUILD_ID/a VERSION_ID=20260428.0.521691' /etc/os-release && \
|
||||
sed -i '/BUILD_ID/a VERSION_ID=20260429.0.522721' /etc/os-release && \
|
||||
true
|
||||
|
||||
ENV LANG=C.UTF-8
|
||||
|
||||
@ -14,11 +14,11 @@ FROM alpine:3.23 AS verify
|
||||
|
||||
RUN apk add --no-cache curl tar zstd
|
||||
|
||||
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20260428.0.521691/multilib-devel-20260428.0.521691.tar.zst" && \
|
||||
echo "ec780f8f3ea79b60cb7127f0355d8291e2075d4cfb9efac6c73fed6761c78671 multilib-devel-20260428.0.521691.tar.zst" > /tmp/sha256sums.txt && \
|
||||
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20260429.0.522721/multilib-devel-20260429.0.522721.tar.zst" && \
|
||||
echo "5d7b405e8304e0f0ff5dd0e271fe27c364f51bd8019f52780f704e6b9eec6231 multilib-devel-20260429.0.522721.tar.zst" > /tmp/sha256sums.txt && \
|
||||
sha256sum -c /tmp/sha256sums.txt && \
|
||||
mkdir /rootfs && \
|
||||
tar -C /rootfs --extract --file multilib-devel-20260428.0.521691.tar.zst
|
||||
tar -C /rootfs --extract --file multilib-devel-20260429.0.522721.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="20260428.0.521691"
|
||||
LABEL org.opencontainers.image.revision="446b09aa44caac0c4372917b2da2a59943fc2eb6"
|
||||
LABEL org.opencontainers.image.created="2026-04-28T21:56:50+00:00"
|
||||
LABEL org.opencontainers.image.version="20260429.0.522721"
|
||||
LABEL org.opencontainers.image.revision="c4589ed396fac74cad155bee7ae8a458a7f22240"
|
||||
LABEL org.opencontainers.image.created="2026-04-29T14:48:41+00:00"
|
||||
|
||||
COPY --from=verify /rootfs/ /
|
||||
|
||||
RUN ldconfig && \
|
||||
sed -i '/BUILD_ID/a VERSION_ID=20260428.0.521691' /etc/os-release && \
|
||||
sed -i '/BUILD_ID/a VERSION_ID=20260429.0.522721' /etc/os-release && \
|
||||
true
|
||||
|
||||
ENV LANG=C.UTF-8
|
||||
|
||||
@ -14,11 +14,11 @@ FROM alpine:3.23 AS verify
|
||||
|
||||
RUN apk add --no-cache curl tar zstd
|
||||
|
||||
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20260428.0.521691/repro-20260428.0.521691.tar.zst" && \
|
||||
echo "3898c75286effc5fdb1cfbfd8c5e2c7a5fc3e35c972c9dc12172909b0482bca8 repro-20260428.0.521691.tar.zst" > /tmp/sha256sums.txt && \
|
||||
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20260429.0.522721/repro-20260429.0.522721.tar.zst" && \
|
||||
echo "9543b9ec86a0523591791c227ee2940ce81040826f5d6c2b0eb1ca18f2c474bb repro-20260429.0.522721.tar.zst" > /tmp/sha256sums.txt && \
|
||||
sha256sum -c /tmp/sha256sums.txt && \
|
||||
mkdir /rootfs && \
|
||||
tar -C /rootfs --extract --file repro-20260428.0.521691.tar.zst
|
||||
tar -C /rootfs --extract --file repro-20260429.0.522721.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="20260428.0.521691"
|
||||
LABEL org.opencontainers.image.revision="446b09aa44caac0c4372917b2da2a59943fc2eb6"
|
||||
LABEL org.opencontainers.image.created="2026-04-28T00:00:00Z"
|
||||
LABEL org.opencontainers.image.version="20260429.0.522721"
|
||||
LABEL org.opencontainers.image.revision="c4589ed396fac74cad155bee7ae8a458a7f22240"
|
||||
LABEL org.opencontainers.image.created="2026-04-29T00:00:00Z"
|
||||
|
||||
COPY --from=verify /rootfs/ /
|
||||
|
||||
RUN ldconfig && \
|
||||
sed -i '/BUILD_ID/a VERSION_ID=20260428.0.521691' /etc/os-release && \
|
||||
sed -i '/BUILD_ID/a VERSION_ID=20260429.0.522721' /etc/os-release && \
|
||||
rm -f /var/cache/ldconfig/aux-cache
|
||||
|
||||
ENV LANG=C.UTF-8
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user