From d60cf6f89f1ac5b6a03fc0a0ff069e03207d3fe1 Mon Sep 17 00:00:00 2001 From: Kris De Volder Date: Fri, 28 Feb 2020 11:30:13 -0800 Subject: [PATCH] More attempts to fix theia docker image --- concourse/theia-docker-image/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/concourse/theia-docker-image/Dockerfile b/concourse/theia-docker-image/Dockerfile index 48882c36c..78a9cce1a 100644 --- a/concourse/theia-docker-image/Dockerfile +++ b/concourse/theia-docker-image/Dockerfile @@ -24,11 +24,11 @@ WORKDIR /theia-app ENV SHELL=/bin/bash \ THEIA_DEFAULT_PLUGINS=local-dir:/theia-app/plugins -ADD plugins /theia-app/plugins - RUN yarn --cache-folder ./ycache && rm -rf ./ycache && \ NODE_OPTIONS="--max_old_space_size=8192" yarn theia build ; \ yarn theia download:plugins +ADD plugins/*.vsix /theia-app/plugins/ + ENTRYPOINT [ "yarn", "theia", "start", "--hostname=0.0.0.0", "/home/project" ] EXPOSE 3000