From 622b3806bb9bd6bcbda16eda509d85bc8f4bed55 Mon Sep 17 00:00:00 2001 From: Kris De Volder Date: Thu, 27 Feb 2020 15:49:10 -0800 Subject: [PATCH] Don't add readme file to theia plugins folder Suspect that it causes trouble because the reamde itself is not a vscode extension. --- concourse/theia-docker-image/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/concourse/theia-docker-image/Dockerfile b/concourse/theia-docker-image/Dockerfile index 9ef777b58..e9cd25844 100644 --- a/concourse/theia-docker-image/Dockerfile +++ b/concourse/theia-docker-image/Dockerfile @@ -23,6 +23,7 @@ RUN yarn --cache-folder ./ycache && rm -rf ./ycache && \ NODE_OPTIONS="--max_old_space_size=8192" yarn theia build ADD plugins /theia-app/plugins +RUN rm /theia-app/plugins/README.txt ENV SHELL /bin/bash ENTRYPOINT [ "yarn", "theia", "start", "--hostname=0.0.0.0", "--plugins=local-dir:/theia-app/plugins/", "/home/project" ]