From ceeb7d2495c144fdc4bb859e484e92cfb07eca6e Mon Sep 17 00:00:00 2001 From: Beyley Thomas Date: Fri, 10 Feb 2023 21:51:21 -0800 Subject: [PATCH] Add sdl2 and lib32_sdl2 i actually don't know why this didn't cause a problem until today, but apparently *something* changed? i'm not exactly sure out of the 50 changes in my workflow file i've done today (i *think* it was changing how dotnet is installed?) but it broke and i had to add these to the docker for the SDL2 WSI to build again --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a68236d..2061f12 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ LABEL maintainer="joshua@froggi.es" RUN echo -e '\n\n[multilib]\nInclude = /etc/pacman.d/mirrorlist\n\n' >> /etc/pacman.conf RUN pacman-key --init RUN pacman -Sy --needed --noconfirm archlinux-keyring -RUN pacman -Syu --needed --noconfirm clang meson glslang git mingw-w64 wine base bash base-devel sed git tar curl wget bash gzip sudo file gawk grep bzip2 which pacman systemd findutils diffutils coreutils procps-ng util-linux xcb-util xcb-util-keysyms xcb-util-wm lib32-xcb-util lib32-xcb-util-keysyms glfw-x11 +RUN pacman -Syu --needed --noconfirm clang meson glslang git mingw-w64 wine base bash base-devel sed git tar curl wget bash gzip sudo file gawk grep bzip2 which pacman systemd findutils diffutils coreutils procps-ng util-linux xcb-util xcb-util-keysyms xcb-util-wm lib32-xcb-util lib32-xcb-util-keysyms glfw-x11 sdl2 lib32-sdl2 RUN git config --system --add safe.directory /github/workspace # create a builduser, as we cant run makepkg as root