From 91410d7ce05a6c0f673acbc72ca4c4bd08b392cb Mon Sep 17 00:00:00 2001 From: Dimitri Belopopsky Date: Tue, 2 Nov 2021 20:40:59 +0100 Subject: [PATCH] Add devcontainer setup for V lang --- .devcontainer/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 18af4df12..34299941f 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -91,8 +91,9 @@ ENV PATH=$PATH:~/swift/usr/bin ## https://github.com/elm/compiler/blob/master/installers/linux/README.md # Setup V -## https://github.com/vlang/v/blob/master/doc/docs.md - +RUN mkdir -p ~/vlang && wget https://github.com/vlang/v/releases/download/weekly.2021.44/v_linux.zip -O ~/vlang/vlang.zip && \ + unzip ~/vlang/vlang.zip -d ~/vlang +ENV PATH=$PATH:~/vlang/v # Install the packages that needed extra help RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \