From 7c6363debe943154792a586c0f8343078dc4559a Mon Sep 17 00:00:00 2001 From: Techflash <72118300+techflashYT@users.noreply.github.com> Date: Tue, 13 Feb 2024 08:48:29 -0700 Subject: [PATCH] Install more stuff we need I've been manually `apt install`ing these packages for a while for every build of the kernel. Today I finally fixed that. This makes the build time lower for every kernel build, and prevents it from needing to reach out to ubuntu's servers every time. --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8f02880..937713b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,7 +29,8 @@ FROM ubuntu:${VARIANT} RUN DEBIAN_FRONTEND="noninteractive" apt-get update && \ DEBIAN_FRONTEND="noninteractive" apt-get -y install \ - patch ninja-build make bc ccache gcc libncurses-dev + patch ninja-build make bc ccache gcc libncurses-dev \ + kmod bison flex libssl-dev openssl COPY --from=build /root/x-tools/powerpc-unknown-linux-gnu/ /usr/local/crosstool COPY --from=build /build/hbc/channel/wiiload/wiiload /usr/local/crosstool/bin/wiiload