From 37ca2de3089e7edf026fb08c522df6c2ce34b2c3 Mon Sep 17 00:00:00 2001 From: Jabber Developer Date: Mon, 16 Feb 2026 16:30:37 +0100 Subject: [PATCH] ci: fix arch build --- Dockerfile.arch | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile.arch b/Dockerfile.arch index 387035cd..3758232c 100644 --- a/Dockerfile.arch +++ b/Dockerfile.arch @@ -1,9 +1,11 @@ -FROM archlinux +FROM archlinux:latest ENV TERM=xterm ENV CC="ccache gcc" -RUN pacman -Syu --noconfirm +RUN pacman-key --refresh-keys +RUN pacman -Syyu --noconfirm + # reflector is optional - if it fails due to network issues, continue with default mirrorlist RUN pacman -S --needed --noconfirm reflector && \ (reflector --latest 20 --protocol https --sort rate --save /etc/pacman.d/mirrorlist || true) -- 2.49.1