Skip to content
This repository has been archived by the owner on Apr 4, 2023. It is now read-only.

Fix build #1389

Merged
merged 1 commit into from
Dec 14, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dockerfiles/theia/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ RUN rm -rf ${HOME}/theia-source-code/examples/browser && \
# ovewrite upstream's lerna 4.0.0 as Che-Theia is not adapted to it
sed -i -r -e "s/\"lerna\": \"..*\"/\"lerna\": \"2.11.0\"/" ${HOME}/theia-source-code/package.json && \
# Allow the usage of ELECTRON_SKIP_BINARY_DOWNLOAD=1 by using a more recent version of electron \
sed -i 's| "resolutions": {| "resolutions": {\n "**/electron": "7.0.0",\n "**/vscode-ripgrep": "1.12.0",|' ${HOME}/theia-source-code/package.json && \
sed -i 's| "resolutions": {| "resolutions": {\n "**/electron": "7.0.0",\n "**/vscode-ripgrep": "1.12.0",\n "@types/babel__traverse": "7.18.2",|' ${HOME}/theia-source-code/package.json && \
# remove all electron-browser module to not compile them
find . -name "electron-browser" | xargs rm -rf {} && \
find . -name "*-electron-module.ts" | xargs rm -rf {} && \
Expand Down