From d70b203f70167addd20e40991df4336ce8689069 Mon Sep 17 00:00:00 2001 From: Foster Hangdaan Date: Tue, 29 Oct 2024 06:19:07 -0400 Subject: [PATCH] Add command to synchronize pacman database --- Containerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Containerfile b/Containerfile index 0a1fd9b..ce5d521 100644 --- a/Containerfile +++ b/Containerfile @@ -25,6 +25,7 @@ LABEL org.opencontainers.image.source="https://code.fosterhangdaan.com/foster/ar LABEL org.opencontainers.image.licenses="GPL-3.0-or-later" RUN set -ex && \ + pacman -Sy && \ useradd --create-home builder && \ echo "builder ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/builder && \ echo "BUILDDIR=/build/app/" >> /home/builder/.makepkg.conf && \