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.
This commit is contained in:
belmiro adriano
2024-10-31 13:01:11 -04:00
committed by Michael Vetter
parent 313ab5d55a
commit bbc88557a4

View File

@@ -1,4 +1,4 @@
FROM archlinux/latest
FROM archlinux
RUN pacman -Syu --noconfirm && pacman -S --needed --noconfirm \
autoconf \