Skip to content

Commit

Permalink
Test theia version argument in docker
Browse files Browse the repository at this point in the history
Signed-off-by: Timothy Johnson <timothy.johnson@broadcom.com>
  • Loading branch information
t1m0thyj committed Nov 16, 2023
1 parent 50168ba commit f6c11a7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ze/theia-slim/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ FROM node:${NODE_VERSION}-alpine
RUN apk add --no-cache curl make pkgconfig gcc g++ python3 libx11-dev libxkbfile-dev libsecret-dev chromium
WORKDIR /home/theia
ADD buildPackageJson.js ./buildPackageJson.js
RUN echo $(node buildPackageJson.js ${THEIA_VERSION}) > package.json
RUN echo ${THEIA_VERSION} && node buildPackageJson.js ${THEIA_VERSION}
RUN echo "$(node buildPackageJson.js ${THEIA_VERSION})"
RUN echo "`node buildPackageJson.js ${THEIA_VERSION}`"
RUN echo "$(node buildPackageJson.js ${THEIA_VERSION})" > package.json
ARG GITHUB_TOKEN
RUN yarn global add node-gyp && \
yarn --pure-lockfile && \
Expand Down

0 comments on commit f6c11a7

Please sign in to comment.