Skip to content

Commit

Permalink
I don't know why this fixes it but it does
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew W. Harn <[email protected]>
  • Loading branch information
awharn committed Oct 16, 2023
1 parent 1040956 commit fbb6595
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions ze/theia-slim/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,12 @@ FROM node:${NODE_VERSION}-alpine
RUN apk add --no-cache curl make pkgconfig gcc g++ python3 libx11-dev libxkbfile-dev libsecret-dev
WORKDIR /home/theia
ADD buildPackageJson.js ./buildPackageJson.js
RUN node buildPackageJson.js ${THEIA_VERSION} > package.json
RUN node --experimental-fetch buildPackageJson.js ${THEIA_VERSION} > package.json
ARG GITHUB_TOKEN
RUN yarn --pure-lockfile && \

# First yarn generates the lockfile, second one installs things. Don't ask why this is necessary, I don't know either -_-
RUN yarn && \
yarn && \
NODE_OPTIONS="--max_old_space_size=4096" yarn theia build && \
yarn theia download:plugins && \
yarn --production && \
Expand All @@ -23,7 +26,8 @@ RUN yarn --pure-lockfile && \
echo *.ts.map >> .yarnclean && \
echo *.spec.* >> .yarnclean && \
yarn autoclean --force && \
yarn cache clean
yarn cache clean && \
rm -f yarn.lock
# Uncomment the following lines to install Zowe Explorer in the container
# ARG ZOWE_EXPLORER_VERSION=2.9.2
# RUN cd /home/theia/plugins && \
Expand Down

0 comments on commit fbb6595

Please sign in to comment.