From 27bfcec88b8f82f740015cb20addc708116aa0a4 Mon Sep 17 00:00:00 2001 From: Dimitri Belopopsky Date: Tue, 2 Nov 2021 22:58:05 +0100 Subject: [PATCH 1/3] Add devcontainer setup for VimL/Vim script --- .devcontainer/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index aec4ab153..6413639ff 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -82,7 +82,8 @@ RUN mkdir -p ~/swift && wget https://swift.org/builds/swift-5.5-release/ubuntu20 ENV PATH=$PATH:~/swift/usr/bin # Setup viml -## ? +# To run vim script commands use `/usr/bin/vim -c ":source %" ` +RUN export DEBIAN_FRONTEND=noninteractive && apt-get -y install --no-install-recommends vim # Setup whitespace ## ? From a502f43fc2ae912e08775d603565aa189effb4f5 Mon Sep 17 00:00:00 2001 From: Dimitri Belopopsky Date: Sat, 6 Nov 2021 00:38:49 +0100 Subject: [PATCH 2/3] Add devcontainer setup for whitespace --- .devcontainer/Dockerfile | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 6413639ff..12dcc724f 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -86,7 +86,8 @@ ENV PATH=$PATH:~/swift/usr/bin RUN export DEBIAN_FRONTEND=noninteractive && apt-get -y install --no-install-recommends vim # Setup whitespace -## ? +RUN mkdir -p ~/whitespace && git clone https://github.com/wspace/whitespace-haskell ~/whitespace && cd ~/whitespace && make -B +ENV PATH=$PATH:~/whitespace # Setup Elm ## https://github.com/elm/compiler/blob/master/installers/linux/README.md @@ -95,11 +96,11 @@ RUN export DEBIAN_FRONTEND=noninteractive && apt-get -y install --no-install-rec ## https://github.com/vlang/v/blob/master/doc/docs.md -# Install the packages that needed extra help -RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ - && apt-get -y install --no-install-recommends crystal dart nim powershell scala dotnet-sdk-5.0 r-base racket +# # Install the packages that needed extra help +# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ +# && apt-get -y install --no-install-recommends crystal dart nim powershell scala dotnet-sdk-5.0 r-base racket -RUN pip install wheel matplotlib numpy coconut scons +# RUN pip install wheel matplotlib numpy coconut scons -RUN sudo sh -c 'npm install -g typescript' +# RUN sudo sh -c 'npm install -g typescript' From 81aea998e9c46819b5352ecc2715b22b33f2d956 Mon Sep 17 00:00:00 2001 From: Nicholas Tindle Date: Mon, 8 Nov 2021 05:54:13 +0000 Subject: [PATCH 3/3] fix commented out dockerfile steps --- .devcontainer/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index adb7a8867..81657b23f 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -100,10 +100,10 @@ RUN mkdir -p ~/vlang && wget https://github.com/vlang/v/releases/download/weekly ENV PATH=$PATH:~/vlang/v # # Install the packages that needed extra help -# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ -# && apt-get -y install --no-install-recommends crystal dart nim powershell scala dotnet-sdk-5.0 r-base racket +RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ + && apt-get -y install --no-install-recommends crystal dart nim powershell scala dotnet-sdk-5.0 r-base racket -# RUN pip install wheel matplotlib numpy coconut scons +RUN pip install wheel matplotlib numpy coconut scons -# RUN sudo sh -c 'npm install -g typescript' +RUN sudo sh -c 'npm install -g typescript'