Skip to content

Commit

Permalink
Update browser.Dockerfile
Browse files Browse the repository at this point in the history
Building the browser.Dockerfile fails at line 26 as the .git directory appears missing. With rm -f the build no longer fails.
  • Loading branch information
JoostSP authored and jfaltermeier committed Jul 1, 2024
1 parent 1dcf443 commit 531320f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion browser.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 531320f

Please sign in to comment.