Skip to content

Commit 531320f

Browse files
JoostSPjfaltermeier
authored andcommittedJul 1, 2024
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.
1 parent 1dcf443 commit 531320f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎browser.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ RUN yarn --pure-lockfile && \
2323
echo *.spec.* >> .yarnclean && \
2424
yarn autoclean --force && \
2525
yarn cache clean && \
26-
rm -r .git applications/electron theia-extensions/launcher theia-extensions/updater node_modules
26+
rm -rf .git applications/electron theia-extensions/launcher theia-extensions/updater node_modules
2727

2828
# Production stage uses a small base image
2929
FROM node:18-bullseye-slim as production-stage

0 commit comments

Comments
 (0)
Please sign in to comment.