From bbc88557a4ac338edebb5490b70c05dd4e5ec424 Mon Sep 17 00:00:00 2001 From: belmiro adriano Date: Thu, 31 Oct 2024 13:01:11 -0400 Subject: [PATCH] ci: replace archlinux tag in Dockerfile This pull request addresses an error in the Dockerfile.arch file caused by using an incorrect base image reference (archlinux/latest). The Docker Hub archlinux repository does not support a latest tag, which leads to a "failed to resolve source metadata" error during the Docker build process. This PR updates the base image reference to archlinux, resolving the error and allowing for a successful build. Fix https://github.com/profanity-im/profanity/issues/2004 Note: Commit message edited by @jubalh since @tjsweetblack didn't respond. --- Dockerfile.arch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.arch b/Dockerfile.arch index d4c4e0a1..e3d78f52 100644 --- a/Dockerfile.arch +++ b/Dockerfile.arch @@ -1,4 +1,4 @@ -FROM archlinux/latest +FROM archlinux RUN pacman -Syu --noconfirm && pacman -S --needed --noconfirm \ autoconf \