From 531320f4869f5887dc97ed6f98b063efa9448c41 Mon Sep 17 00:00:00 2001 From: Joost SP <8734351+JoostSP@users.noreply.github.com> Date: Sat, 15 Jun 2024 11:53:26 +0200 Subject: [PATCH] Update browser.Dockerfile Building the browser.Dockerfile fails at line 26 as the .git directory appears missing. With rm -f the build no longer fails. --- browser.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser.Dockerfile b/browser.Dockerfile index 866e788af..ee8b69b04 100644 --- a/browser.Dockerfile +++ b/browser.Dockerfile @@ -23,7 +23,7 @@ RUN yarn --pure-lockfile && \ echo *.spec.* >> .yarnclean && \ yarn autoclean --force && \ yarn cache clean && \ - rm -r .git applications/electron theia-extensions/launcher theia-extensions/updater node_modules + rm -rf .git applications/electron theia-extensions/launcher theia-extensions/updater node_modules # Production stage uses a small base image FROM node:18-bullseye-slim as production-stage