From c52f83907fef6b72735aa506e87b77afc2efdf97 Mon Sep 17 00:00:00 2001 From: MisterSheeple <27652712+MisterSheeple@users.noreply.github.com> Date: Thu, 1 Aug 2024 16:10:43 +0000 Subject: [PATCH] Clean up extraneous comments in dockerfile --- Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3186b800..4661476f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,12 +26,10 @@ RUN wget https://apt.devkitpro.org/install-devkitpro-pacman RUN chmod +x install-devkitpro-pacman # assume yes for in-script apt commands RUN sed -i 's/^apt-get.*$/& -y/g' install-devkitpro-pacman -# now do dkp-pacman installation RUN ./install-devkitpro-pacman RUN rm install-devkitpro-pacman # workaround for a dumb WSL bug that happens with Windows Docker. if we don't do this, devkitPPC installation fails on Windows. RUN if [ ! -e /etc/mtab ]; then ln -s /proc/self/mounts /etc/mtab; fi -# and finally, we get to install devkitPPC RUN dkp-pacman -S devkitPPC --noconfirm # dear fucking god this is hacky but it works (needed otherwise next step fails) RUN rm /usr/bin/cpp /usr/bin/g++ /lib/cpp