From e861f9bfbdf348b3462967a1b8212451137056d2 Mon Sep 17 00:00:00 2001 From: spacemeowx2 Date: Tue, 3 Mar 2020 17:46:06 +0800 Subject: [PATCH] build: use latest build tools from pacman --- Dockerfile | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index a2e1504..c2284d6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,13 @@ FROM devkitpro/devkita64_devkitarm:20190720 -# RUN dkp-pacman -Sy --noconfirm libnx -RUN git clone -b master https://github.com/switchbrew/libnx.git --depth=1 \ - && cd libnx \ - && make install \ - && cd .. \ - && rm -rf libnx +# RUN git clone -b master https://github.com/switchbrew/libnx.git --depth=1 \ +# && cd libnx \ +# && make -j8 \ +# && make install \ +# && cd .. \ +# && rm -rf libnx +RUN dkp-pacman -Syyu --noconfirm switch-dev libnx \ + && dkp-pacman -Scc --noconfirm VOLUME [ "/code" ] WORKDIR /code