8000 Release 20250501.0.343517 · archlinux/archlinux-docker@b7590d8 · GitHub
[go: up one dir, main page]

Skip to content

Commit b7590d8

Browse files
author
GITLAB_PROJECT_TOKEN
committed
Release 20250501.0.343517
1 parent 19f9d2c commit b7590d8

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

Dockerfile.base

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ FROM alpine:3.21 AS verify
1414

1515
RUN apk add --no-cache curl tar zstd
1616

17-
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20250430.0.343213/base-20250430.0.343213.tar.zst" && \
18-
echo "405df9fad382bdc4d5ef11c39801dfd5b2d29c1a353a7cadd5b184f1a01fec4d base-20250430.0.343213.tar.zst" > /tmp/sha256sums.txt && \
17+
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20250501.0.343517/base-20250501.0.343517.tar.zst" && \
18+
echo "31c911071375c5080b13a5c834cd00ed93a5ff26d23e30e3ee1ffd328ed7b7fc base-20250501.0.343517.tar.zst" > /tmp/sha256sums.txt && \
1919
sha256sum -c /tmp/sha256sums.txt && \
2020
mkdir /rootfs && \
21-
tar -C /rootfs --extract --file base-20250430.0.343213.tar.zst
21+
tar -C /rootfs --extract --file base-20250501.0.343517.tar.zst
2222

2323
FROM scratch AS root
2424

@@ -29,14 +29,14 @@ LABEL org.opencontainers.image.url="https://gitlab.archlinux.org/archlinux/archl
2929
LABEL org.opencontainers.image.documentation="https://wiki.archlinux.org/title/Docker#Arch_Linux"
3030
LABEL org.opencontainers.image.source="https://gitlab.archlinux.org/archlinux/archlinux-docker"
3131
LABEL org.opencontainers.image.licenses="GPL-3.0-or-later"
32-
LABEL org.opencontainers.image.version="20250430.0.343213"
32+
LABEL org.opencontainers.image.version="20250501.0.343517"
3333
LABEL org.opencontainers.image.revision="ae0527df18a9c5b94b28351b2265a20012d2fda0"
34-
LABEL org.opencontainers.image.created="2025-04-30T09:07:14+00:00"
34+
LABEL org.opencontainers.image.created="2025-05-01T09:08:07+00:00"
3535

3636
COPY --from=verify /rootfs/ /
3737

3838
RUN ldconfig && \
39-
sed -i '/BUILD_ID/a VERSION_ID=20250430.0.343213' /etc/os-release
39+
sed -i '/BUILD_ID/a VERSION_ID=20250501.0.343517' /etc/os-release
4040

4141
ENV LANG=C.UTF-8
4242
CMD ["/usr/bin/bash"]

Dockerfile.base-devel

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ FROM alpine:3.21 AS verify
1414

1515
RUN apk add --no-cache curl tar zstd
1616

17-
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20250430.0.343213/base-devel-20250430.0.343213.tar.zst" && \
18-
echo "beb1909fca1703ef988a9ecb6e76a938bc6c0ce0fdc0b9d1a52296d32b4095b7 base-devel-20250430.0.343213.tar.zst" > /tmp/sha256sums.txt && \
17+
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20250501.0.343517/base-devel-20250501.0.343517.tar.zst" && \
18+
echo "47e47a078024ad841f5759f6c4fda804f93c49454a5b7b38dc7c8103695ef3e8 base-devel-20250501.0.343517.tar.zst" > /tmp/sha256sums.txt && \
1919
sha256sum -c /tmp/sha256sums.txt && \
2020
mkdir /rootfs && \
21-
tar -C /rootfs --extract --file base-devel-20250430.0.343213.tar.zst
21+
tar -C /rootfs --extract --file base-devel-20250501.0.343517.tar.zst
2222

2323
FROM scratch AS root
2424

@@ -29,14 +29,14 @@ LABEL org.opencontainers.image.url="https://gitlab.archlinux.org/archlinux/archl
2929
LABEL org.opencontainers.image.documentation="https://wiki.archlinux.org/title/Docker#Arch_Linux"
3030
LABEL org.opencontainers.image.source="https://gitlab.archlinux.org/archlinux/archlinux-docker"
3131
LABEL org.opencontainers.image.licenses="GPL-3.0-or-later"
32-
LABEL org.opencontainers.image.version="20250430.0.343213"
32+
LABEL org.opencontainers.image.version="20250501.0.343517"
3333
LABEL org.opencontainers.image.revision="ae0527df18a9c5b94b28351b2265a20012d2fda0"
34-
LABEL org.opencontainers.image.created="2025-04-30T09:07:14+00:00"
34+
LABEL org.opencontainers.image.created="2025-05-01T09:08:07+00:00"
3535

3636
COPY --from=verify /rootfs/ /
3737

3838
RUN ldconfig && \
39-
sed -i '/BUILD_ID/a VERSION_ID=20250430.0.343213' /etc/os-release
39+
sed -i '/BUILD_ID/a VERSION_ID=20250501.0.343517' /etc/os-release
4040

4141
ENV LANG=C.UTF-8
4242
CMD ["/usr/bin/bash"]

Dockerfile.multilib-devel

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ FROM alpine:3.21 AS verify
1414

1515
RUN apk add --no-cache curl tar zstd
1616

17-
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20250430.0.343213/multilib-devel-20250430.0.343213.tar.zst" && \
18-
echo "f7e18d79632dd04ec78fc616a129c5c35bfab68bcf77cfffc82fae2eff2d1a96 multilib-devel-20250430.0.343213.tar.zst" > /tmp/sha256sums.txt && \
17+
RUN curl -sOJL "https://gitlab.archlinux.org/api/v4/projects/10185/packages/generic/rootfs/20250501.0.343517/multilib-devel-20250501.0.343517.tar.zst" && \
18+
echo "207410ccfe178b78eeee82df7ea994939554e22244644803bec289c9a355bda5 multilib-devel-20250501.0.343517.tar.zst" > /tmp/sha256sums.txt && \
1919
sha256sum -c /tmp/sha256sums.txt && \
2020
mkdir /rootfs && \
21-
tar -C /rootfs --extract --file multilib-devel-20250430.0.343213.tar.zst
21+
tar -C /rootfs --extract --file multilib-devel-20250501.0.343517.tar.zst
2222

2323
FROM scratch AS root
2424

@@ -29,14 +29,14 @@ LABEL org.opencontainers.image.url="https://gitlab.archlinux.org/archlinux/archl
2929
LABEL org.opencontainers.image.documentation="https://wiki.archlinux.org/title/Docker#Arch_Linux"
3030
LABEL org.opencontainers.image.source="https://gitlab.archlinux.org/archlinux/archlinux-docker"
3131
LABEL org.opencontainers.image.licenses="GPL-3.0-or-later"
32-
LABEL org.opencontainers.image.version="20250430.0.343213"
32+
LABEL org.opencontainers.image.version="20250501.0.343517"
3333
LABEL org.opencontainers.image.revision="ae0527df18a9c5b94b28351b2265a20012d2fda0"
34-
LABEL org.opencontainers.image.created="2025-04-30T09:07:14+00:00"
34+
LABEL org.opencontainers.image.created="2025-05-01T09:08:07+00:00"
3535

3636
COPY --from=verify /rootfs/ /
3737

3838
RUN ldconfig && \
39-
sed -i '/BUILD_ID/a VERSION_ID=20250430.0.343213' /etc/os-release
39+
sed -i '/BUILD_ID/a VERSION_ID=20250501.0.343517' /etc/os-release
4040

4141
ENV LANG=C.UTF-8
4242
CMD ["/usr/bin/bash"]

0 commit comments

Comments
 (0)
0