From 01a64fbbb73e091474987be6b955747e861f2a6d Mon Sep 17 00:00:00 2001 From: Christoph Scholtes Date: Sun, 6 Aug 2023 21:08:04 -0600 Subject: [PATCH] Always refresh pacman package lists to avoid 404 errors. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0a21102..e059f23 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ RUN useradd --create-home --uid 1000 --gid 1000 --shell /bin/bash build # Install make to run make ENV DEBIAN_FRONTEND=noninteractive -RUN pacman -Suy --noconfirm && pacman -S make --noconfirm +RUN pacman -Suyy --noconfirm && pacman -S make --noconfirm # Create toolchain directory USER build