From c63a18b1ddcdfc51073b633070e3bd9c4181c27e Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Thu, 7 Mar 2019 17:58:42 -0600 Subject: [PATCH] [nostalgia/devenv] Remove pwsh and libc++ --- Dockerfile | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 33b38a07..c2d5e2ea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,6 +29,7 @@ RUN dnf install -y fuse-devel RUN dnf install -y qt5-devel RUN dnf install -y findutils RUN dnf install -y ninja-build +RUN dnf install -y libcxx-devel libcxxabi-devel ############################################################################### # Install devkitARM @@ -56,12 +57,5 @@ WORKDIR /usr/src/project ADD devenv/entrypoint.sh / ENTRYPOINT ["/entrypoint.sh"] -############################################################################### -# Install Powershell -RUN rpm --import https://packages.microsoft.com/keys/microsoft.asc -RUN curl https://packages.microsoft.com/config/rhel/7/prod.repo | sudo tee /etc/yum.repos.d/microsoft.repo -RUN dnf update -y -RUN dnf install -y powershell - ENV CC clang ENV CXX clang++