mirror of
https://gitlab.archlinux.org/archlinux/archlinux-docker.git
synced 2026-02-20 00:31:10 +01:00
Release 20240101.0.204074
This commit is contained in:
parent
9424e4984c
commit
4caef241ef
@ -1,5 +1,5 @@
|
||||
default:
|
||||
image: "archlinux:latest"
|
||||
image: "archlinux/archlinux:latest"
|
||||
|
||||
stages:
|
||||
- cleanup
|
||||
|
||||
@ -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/20231231.0.203775/base-20231231.0.203775.tar.zst" && \
|
||||
echo "38a20dfe97aff6be85885f881127061aee73be5c0a8f0baba1f0a9c54d4c1e38 base-20231231.0.203775.tar.zst" > /tmp/sha256sums.txt && \
|
||||
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20240101.0.204074/base-20240101.0.204074.tar.zst" && \
|
||||
echo "93cfb041848db9460e987f2b208b8d58517718988f3f27a900827f43ab2ad539 base-20240101.0.204074.tar.zst" > /tmp/sha256sums.txt && \
|
||||
sha256sum -c /tmp/sha256sums.txt && \
|
||||
mkdir /rootfs && \
|
||||
tar -C /rootfs --extract --file base-20231231.0.203775.tar.zst
|
||||
tar -C /rootfs --extract --file base-20240101.0.204074.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="20231231.0.203775"
|
||||
LABEL org.opencontainers.image.revision="19c9adc97f82b3d13a29ace6b0900625f9aaee42"
|
||||
LABEL org.opencontainers.image.created="2023-12-31T09:07:16+00:00"
|
||||
LABEL org.opencontainers.image.version="20240101.0.204074"
|
||||
LABEL org.opencontainers.image.revision="98cd79111dd530447f491d547d14f3c38e227e46"
|
||||
LABEL org.opencontainers.image.created="2024-01-01T19:08:40+00:00"
|
||||
|
||||
COPY --from=verify /rootfs/ /
|
||||
|
||||
RUN ldconfig && \
|
||||
sed -i '/BUILD_ID/a VERSION_ID=20231231.0.203775' /etc/os-release
|
||||
sed -i '/BUILD_ID/a VERSION_ID=20240101.0.204074' /etc/os-release
|
||||
|
||||
ENV LANG=C.UTF-8
|
||||
CMD ["/usr/bin/bash"]
|
||||
|
||||
@ -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/20231231.0.203775/base-devel-20231231.0.203775.tar.zst" && \
|
||||
echo "01d0945205bdb2fee15b359a9f5d9e5dd5be2df2c0009607c1c34aff5ba0b96e base-devel-20231231.0.203775.tar.zst" > /tmp/sha256sums.txt && \
|
||||
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20240101.0.204074/base-devel-20240101.0.204074.tar.zst" && \
|
||||
echo "97a99c8c55c6b7216af14447031e60e23b2c8d8aef95008f788b527550f5500a base-devel-20240101.0.204074.tar.zst" > /tmp/sha256sums.txt && \
|
||||
sha256sum -c /tmp/sha256sums.txt && \
|
||||
mkdir /rootfs && \
|
||||
tar -C /rootfs --extract --file base-devel-20231231.0.203775.tar.zst
|
||||
tar -C /rootfs --extract --file base-devel-20240101.0.204074.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="20231231.0.203775"
|
||||
LABEL org.opencontainers.image.revision="19c9adc97f82b3d13a29ace6b0900625f9aaee42"
|
||||
LABEL org.opencontainers.image.created="2023-12-31T09:07:16+00:00"
|
||||
LABEL org.opencontainers.image.version="20240101.0.204074"
|
||||
LABEL org.opencontainers.image.revision="98cd79111dd530447f491d547d14f3c38e227e46"
|
||||
LABEL org.opencontainers.image.created="2024-01-01T19:08:40+00:00"
|
||||
|
||||
COPY --from=verify /rootfs/ /
|
||||
|
||||
RUN ldconfig && \
|
||||
sed -i '/BUILD_ID/a VERSION_ID=20231231.0.203775' /etc/os-release
|
||||
sed -i '/BUILD_ID/a VERSION_ID=20240101.0.204074' /etc/os-release
|
||||
|
||||
ENV LANG=C.UTF-8
|
||||
CMD ["/usr/bin/bash"]
|
||||
|
||||
@ -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/20231231.0.203775/multilib-devel-20231231.0.203775.tar.zst" && \
|
||||
echo "edfe2b0787f975947806729ef91b965d62d9ba9bb05e473eed628babd92e8817 multilib-devel-20231231.0.203775.tar.zst" > /tmp/sha256sums.txt && \
|
||||
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20240101.0.204074/multilib-devel-20240101.0.204074.tar.zst" && \
|
||||
echo "227f141a7c5e26e42b4c6a008bb4f551bf74768598dcb4d6504e51eb8548bfb6 multilib-devel-20240101.0.204074.tar.zst" > /tmp/sha256sums.txt && \
|
||||
sha256sum -c /tmp/sha256sums.txt && \
|
||||
mkdir /rootfs && \
|
||||
tar -C /rootfs --extract --file multilib-devel-20231231.0.203775.tar.zst
|
||||
tar -C /rootfs --extract --file multilib-devel-20240101.0.204074.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="20231231.0.203775"
|
||||
LABEL org.opencontainers.image.revision="19c9adc97f82b3d13a29ace6b0900625f9aaee42"
|
||||
LABEL org.opencontainers.image.created="2023-12-31T09:07:16+00:00"
|
||||
LABEL org.opencontainers.image.version="20240101.0.204074"
|
||||
LABEL org.opencontainers.image.revision="98cd79111dd530447f491d547d14f3c38e227e46"
|
||||
LABEL org.opencontainers.image.created="2024-01-01T19:08:40+00:00"
|
||||
|
||||
COPY --from=verify /rootfs/ /
|
||||
|
||||
RUN ldconfig && \
|
||||
sed -i '/BUILD_ID/a VERSION_ID=20231231.0.203775' /etc/os-release
|
||||
sed -i '/BUILD_ID/a VERSION_ID=20240101.0.204074' /etc/os-release
|
||||
|
||||
ENV LANG=C.UTF-8
|
||||
CMD ["/usr/bin/bash"]
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user