From 42f52539d09f21548e1e3c8390d8b00bac535a70 Mon Sep 17 00:00:00 2001 From: stdevYuniers Date: Thu, 27 Dec 2018 16:54:20 -0500 Subject: [PATCH] [docker] refs #27 Don't use VS_EXTENSIONS in CLI image - Remove VS_EXTENSIONS as build arg - Remove install of Visual Studio Code if VS_EXTENSIONS is present --- docker/images/dev-cli/Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/docker/images/dev-cli/Dockerfile b/docker/images/dev-cli/Dockerfile index 248a43c9..f9e0772b 100644 --- a/docker/images/dev-cli/Dockerfile +++ b/docker/images/dev-cli/Dockerfile @@ -3,7 +3,6 @@ FROM $IMAGE_FROM ARG BDATE ARG SCOMMIT -ARG VS_EXTENSIONS # Image labels (see ./hooks/build for ARGS) LABEL "org.label-schema.name"="libskycoin-dotnet" \ @@ -42,7 +41,6 @@ RUN apt update \ nuget \ referenceassemblies-pcl \ dotnet-sdk-2.2 \ - && for ext in $VS_EXTENSIONS; do code --user-data-dir $HOME --install-extension $ext; done \ && apt clean \ && rm -rf /var/lib/apt/lists/* /tmp/*