diff options
| author | Ivan Gabaldon <igabaldon@inetol.net> | 2025-08-18 21:33:27 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-18 21:33:27 +0200 |
| commit | 5f364ad99973341c565ed439b12218051923cbb2 (patch) | |
| tree | 0194eb6d3ec9336167e660aa60ffe3b4bef43380 | |
| parent | 547d9dcee77885f7414bc8c26276acc0f4368646 (diff) | |
[fix] container: change mirror (#5127)
`mirrors.edge.kernel.org` has weird issues, use the official mirror and avoid
future issues.
| -rw-r--r-- | container/base-builder.yml | 4 | ||||
| -rw-r--r-- | container/base.yml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/container/base-builder.yml b/container/base-builder.yml index 928e09232..e065a346e 100644 --- a/container/base-builder.yml +++ b/container/base-builder.yml @@ -1,7 +1,7 @@ contents: repositories: - - https://mirrors.edge.kernel.org/alpine/edge/main - - https://mirrors.edge.kernel.org/alpine/edge/community + - https://dl-cdn.alpinelinux.org/alpine/edge/main + - https://dl-cdn.alpinelinux.org/alpine/edge/community packages: - alpine-base - build-base diff --git a/container/base.yml b/container/base.yml index 0fb742595..6d401a145 100644 --- a/container/base.yml +++ b/container/base.yml @@ -1,6 +1,6 @@ contents: repositories: - - https://mirrors.edge.kernel.org/alpine/edge/main + - https://dl-cdn.alpinelinux.org/alpine/edge/main packages: - alpine-baselayout - ca-certificates-bundle |