From 9a9c4e69e95744bb3a9479c58bc14a19b605a1f0 Mon Sep 17 00:00:00 2001 From: KoNicks Date: Sun, 15 May 2022 19:58:59 +0300 Subject: [PATCH] Fix partial update in Dockerfile holy shit how did I let this slip --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f256205..64e1b17 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,7 @@ COPY koffe /usr/bin/koffe COPY pi.is /usr/share/koffe/pi.is COPY install /usr/share/koffe/install RUN chmod +x /usr/bin/koffe -RUN pacman -Sy base archiso pacman-contrib libnewt wget git --noconfirm +RUN pacman -Suy --noconfirm +RUN pacman -S base archiso pacman-contrib libnewt wget git --noconfirm RUN install -d /finalimage ENTRYPOINT ["/usr/bin/koffe"]