From f462d2610e367147710f3761de3d962e44970fe2 Mon Sep 17 00:00:00 2001 From: Marc Dumais Date: Mon, 7 Aug 2023 17:15:16 -0400 Subject: [PATCH] [browser.dockerfile] Fixed build issue Oops - I had forgotten to build the Theia extensions, which caused a problem at runtime. Signed-off-by: Marc Dumais --- browser.Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/browser.Dockerfile b/browser.Dockerfile index d177d43d3..bcee68ae6 100644 --- a/browser.Dockerfile +++ b/browser.Dockerfile @@ -13,6 +13,7 @@ COPY . . # Download plugins and build application production mode # Use yarn autoclean to remove unnecessary files from package dependencies RUN yarn --pure-lockfile && \ + yarn build:extensions && \ yarn download:plugins && \ yarn browser build && \ yarn --production && \